Tagged Questions

Piston is a relatively small Django application that lets you create application programming interfaces (API) for your sites. It has several unique features: Ties into Django's internal mechanisms. Supports OAuth out of the box (as well as Basic/Digest or custom auth.) Doesn't require tying to ...

learn more… | top users | synonyms

10
votes
2answers
2k views

How do I make Django-Piston to include related child objects in the serialized output?

I am pulling my hair out here because this isn't working for me and seems like it should be. I am using Django-Piston to develop an API and have 2 models, Building and Building Area. BuildingArea ...
7
votes
4answers
1k views

RESTful APIs for Django projects/apps

What do you prefer when you want to "RESTify" your Django project in Django? I came to the conclusion that there are really three options to do that: django-piston ...
7
votes
1answer
2k views

Complete 'django piston with oauth support' example

I have followed a number of tutorials and examples on the web to setup and use django piston. They all work flawlessly, until i try to integrate oauth authentication. I have been working against the ...
6
votes
1answer
1k views

What is the right way to write a django-piston client?

I've been reading a lot on django-piston and using to to make an API for an app I'm development, but I'm getting hung up on the client side of the world. I've written the handlers and uri mappings, ...
5
votes
1answer
121 views

Recommended configuration for both web client and mobile REST api security

I realize there are a ton of questions on this subject, and I have been researching this for a couple days now. I want to make sure my question is as specific as possible since I have yet to gain a ...
5
votes
5answers
2k views

I get a 400 Bad Request error while using django-piston

I am trying to use Piston to provide REST support to Django. I have implemented my handlers as per the documentation provided . The problem is that i can "read" and "delete" my resource but i cannot ...
5
votes
3answers
976 views

Is it possible to use django Piston on Google AppEngine?

I haven't been able to do so due to all sort of missing dependencies (mainly, I think the problem is in the authentication code which relies on django stuff that is not available on AppEngine) I was ...
4
votes
1answer
367 views

Django Piston forks confusion

I've noticed that there are about 30 forks of Django Piston on GitHub: https://github.com/search?q=django-piston&type=Everything&repo=&langOverride=&start_value=1 My problem with ...
4
votes
2answers
439 views

Can't exclude ForeignKey fields for User in Piston

I have this model: # models.py from django.contrib.auth.models import User class Test(models.Model): author = models.ForeignKey(User, related_name="tests") title = ...
4
votes
4answers
2k views

Is django-piston mature enough?

I'm developing an advertising site and want to use web services for the requests. I mean, a publisher site will put a JavaScript snippet and it will pull a banner through a REST GET. Is the ...
4
votes
2answers
802 views

How to use sessions with django piston auth?

The problem is that I want to store authentication in a cookie that I can present to django piston rather than requiring user/password to be typed in each time (without hardcoding or storing the ...
3
votes
1answer
78 views

Python Piston equivalent for consuming RESTful APIs?

Is there something equivalent of Django Piston but for consuming RESTful API's?
3
votes
1answer
68 views

Django + SQLAlchemy + RESTful API (tastypie?)

I am currently using Django with SQLAlchemy, and would like to implement an (simple to begin with) API for mobile devices. Am evaluating at different python RESTful API frameworks, particularly ...
3
votes
1answer
540 views

OAuth web service and Django-piston

I am trying to implement a web service with filtered resources access (OAuth authentication) with Django and I had a couple of questions. I created two webservers: http://localhost:8080 : Web ...
3
votes
1answer
660 views

Django-piston file uploading

I am using django-piston and curl to post file to specific phone numbers in my database. But I'm having problems uploading files. This is my post response using curl: C:\curl>curl -F ...
3
votes
1answer
361 views

What is the best way to consume a django-piston REST API from a Django view?

I have started using django-piston for creating APIS but I am having trouble finding documentation on how to consume the API from inside django with python. I have seen examples using javascript. So ...
3
votes
3answers
787 views

How to manipulate the response object in django-piston?

I have some existing python code that uses django-piston which returns a dictionary as its response. For example: from piston.handler import BaseHandler class FooHandler(BaseHandler): ...
3
votes
1answer
2k views

Running Django-Celery in Production

I've built a Django web application and some Django-Piston services. Using a web interface a user submits some data which is POSTed to a web service and that web service in turn uses Django-celery to ...
3
votes
4answers
723 views

Can django-piston module create upload image restful webservice

I trying to restful server that one can upload image, By use django-piston I can put,get,post information restfully but don't know how to upload image.
2
votes
1answer
80 views

how to assign value in django

I have a problem in subtracting a two values. i just want to be like this a = b - c here is my code in my handlers.py def create(self, request): if not self.has_model(): return ...
2
votes
2answers
507 views

How to prevent 'IOError: failed to write data' when client closes connection to Django/WSGI app?

I have an iPhone app that is using web services implemented in Python, using Django and Piston, running on an apache server through WSGI. Sometimes the app closes its connection to the server before ...
2
votes
1answer
106 views

django/python - what's the recommended secure way to exchange data between my infrastructure and my customers?

I'm using Django/Postgres and Python for my web site and the background processes. I have hundreds of messages every minute populating my database and I would like to securely allow other customers ...
2
votes
1answer
95 views

Django Piston : Define the priority of the returned elements

Let's take this sample : url(r'^test[/]$', test_handler, { 'emitter_format': 'xml' }), With the following handler : class testHandler(BaseHandler): allowed_methods = ('GET',) def ...
2
votes
1answer
90 views

How to update a model but return unmodified model in Django?

I'm using django-piston to write a RESTful Web Service and have a problem. in models.py: class Status(models.Model): user = models.ForeignKey(User) content = models.TextField(max_length=140) ...
2
votes
1answer
702 views

Error handling in Django-Piston

In Django-Piston, is there a good way to do error handling? (Like returning a 400 status code when the caller omits a required GET parameter, or when the parameters are invalid.)
2
votes
1answer
318 views

django-piston: request.data availability within DELETE handlers

django-piston appears to create a data attribute on the request object before it gets to the Handler phase. This data is available, for example, in the PUT and POST handlers by accessing request.data. ...
2
votes
2answers
482 views

Django Piston - Is there a login_required decorator? If not, how do we raise errors?

I can't figure out for the life of me how to ensure a user is authenticated in Piston. Here's what I've tried. Login_required decorator in Piston. This doesn't seem to work, so I looked and found ...
2
votes
1answer
570 views

Django project (apache, mod_wsgi) can't import namespace packages

When installing django-piston from the bitbucket repo with pip, I noticed something weird (first indented line of the output): $ pip install hg+http://bitbucket.org/jespern/django-piston ...
2
votes
1answer
454 views

Handling related models in Django for use in Django-Piston

I have setup like so (changed for simplicity) class Author(models.Model) name = models.CharField(max_length=100) ... class Document(models.Model): title = ...
2
votes
1answer
378 views

How to set an HTTP header for a JSON message from within a django-piston handler?

In a piston handler, I need to return a django.db.models.query.QuerySet as a proper JSON message (reflective of the underly model and query), while also adding an HttpResponse header of my own. So ...
2
votes
3answers
819 views

Django: custom serialization options?

I'm working on a Django-based web service and I'm trying to figure out what the best way to do my serialization will be. The tricky requirement, though, is that I'd like to have pretty much full ...
2
votes
2answers
624 views

Using django-piston, how can I write out HTTP headers in the response?

How can I include an HTTP header, such as Cache-Control or Last-Modified, in the response to a django-piston call?
1
vote
1answer
32 views

django Piston Post Request Change strings to lists

I have a simple Django-Piston Handler that creates a new instance of a model and saves it. From the client, I am posting using Javascript Objects and JQuery.post. Upon inspecting the data with ...
1
vote
2answers
37 views

local fields list not overriding correctly in Django-piston

Has anyone experience issues with this but in Django-piston that doesn't allow you to override fields already set? ...
1
vote
3answers
735 views

Django RESTful API - django-piston vs. django-tastypie

We're looking for a general RESTful API solution for our Django project. We would use the API at first for Ajax calls on the web site and later for mobile apps, external apps and things like that. I ...
1
vote
2answers
97 views

ValueError: Cannot assign in django

I have encountered a problem when I was trying to add/post a data to my models. this is what i have done in my python manage.py shell: >>> from booking.models import * >>> qa = ...
1
vote
1answer
187 views

unable to update (PUT) and delete (delete) data in django-piston

i just followed this tutorial and the example is great. http://weblog.mattdorn.com/content/restful-web-apps-with-django-piston-and-ext-js/ but when i create on my own, the add method is ok but the ...
1
vote
1answer
47 views

No emitters found for type ext-json

I have this error "No emitters found for type ext-json" in running my django... i dont have any idea about my situation. i just followed this tutorial and the example is good. ...
1
vote
2answers
153 views

How to show foreign key in django-piston rest output instead of related object data

I use latest django-piston 0.2.3rc1 (but may downgrade if needed). class MaintenanceHandler(CsrfExemptBaseHandler): allowed_methods = ('GET', 'POST', 'PUT', 'DELETE') anonymous = is_anonymous ...
1
vote
1answer
67 views

Broken pipe error using Django Piston

I've implemented a simple POST handler for uploading a file using Django Piston. I'm testing with manage.py runserver. When my handler throws an exception, I get an error in the console: "[Errno 32] ...
1
vote
2answers
295 views

How to allow POST restful webservice calls with Django Piston and CSRF protection?

I'm new to django-piston and cannot get POST webservice calls to work due to Django's CSRF protection. How do I allow webservice calls to bypass the CSRF protection and still allow the rest of the ...
1
vote
2answers
597 views

Reverse URL problem with Django and Tastypie

We're porting our API from Django - Piston to Django-TastyPie. Everything went smoothly, 'till we got to this: urls.py of the app url(r'^upload/', Resource(UploadHandler, ...
1
vote
1answer
280 views

keeping DRY with piston and backbone.js

A major design consideration of backbone.js is bootstrapping. I want to bootstrap my initial view, and then have the page do subsequent calls to the piston API for filtering the result set. I tried ...
1
vote
2answers
335 views

RESTful API for playframework project

I am new to playframework, we are planning a big project witch will be expose api for other applications can integrate with it; Do we have any extensions or libraries like django-piston that support ...
1
vote
2answers
57 views

Stop Piston's error catching

I'm using Piston with Django. Anytime there's an error in my handler code, I get a simplified, text-only description of the error in my http response, which gives me much less information that Django ...
1
vote
1answer
100 views

Django app freezing with a few concurrent requests

I have a django app without views, I only use it to provide a REST API using django-piston package. Since I have deployed it to amazon-ec2 with mod-wsgi, after some requests it freezes, and the CPU ...
1
vote
0answers
143 views

django-piston: how to add an entity field to manyToMany related entity fields?

I have two Entities: Post and Tag, with a ManyToMany relation called 'tagged' What I need to do, in order to parse json returned on particular client, is output fields by adding a field 'postID' (the ...
1
vote
1answer
184 views

Building a geospatial querying REST api

I am trying to build an iOS app that takes the location of the user and then queries the backend for other users near him/her through a REST api.I have done some googling and my choices (given my ...
1
vote
2answers
215 views

Sync django-piston models when using egg module

I'm using django-piston and running into the following problem when running the manage.py syncdb command: Traceback (most recent call last): File "./manage.py", line 13, in <module> ...
1
vote
1answer
207 views

How to debug django-piston application?

My piston application works correctly when I run it locally with python manage.py runserver command but returns urllib2.HTTPError: HTTP Error 403: FORBIDDEN under apache. How can I debug ...

1 2 3