A mini-framework for Django for creating RESTful APIs.
0
votes
1answer
13 views
Forms between Django Client and Django Piston API
Is there any easy way to process the ModalForm in Django Piston API to a Django Client? ,
On documentations @validate decorator is mentioning but I couldn't find the way to send forms from API to the ...
0
votes
0answers
19 views
How to create objects from different models in one handler in Piston Django
i'm using Piston to create an API for an application in Django.
I'll try to explain my doubt on an easy way.
Let's think I've got two models:
class Device(models.Model):
id = ...
0
votes
0answers
28 views
Performance in Hard-coded Django API [closed]
I'm building a set of small APIs to provide wrappers for certain utilities like email, RSS, etc, to be used with mobile, desktop and other clients.
Now my question is: I know there are multiple ...
1
vote
1answer
32 views
Django Piston Not Found error
I am using Django 1.5 with Piston. Whenever I try to curl the following url:
http://127.0.0.1:8000/search/?limit=20&uri=
I get the following error:
["NotFound"]
The url pattern:
...
0
votes
2answers
158 views
'HttpResponse' has no attribute '_get_content
I am using Django 1.5.1 and Piston for rest support with MongoDB database.
When trying to test the rest url to retrieve the data, I get the following error.
type object 'HttpResponse' has no ...
0
votes
0answers
8 views
How to avoid Piston use fields from previous handlers
Hi I had a bad Idea to use piston on my project... but lot of utility made me wrong...
by the way I have to avoid to use fields from previous handlers, Every handlers
have exclude fields ecc.
...
0
votes
1answer
58 views
Accessing datetime field in sqlite using python-django
I have a SQLite DB which has few columns of type datetime.
These column store time (just the time and not the date) in HH:mm:ss format.
When I try to access this field it is returned as null.
In ...
0
votes
1answer
55 views
ImportError for Django Piston handler that isn't tied to a model
I have created a custom handler (CustomHandler) that isn't tied to a model in the ORM and I think it's rigged up correctly, but I'm getting an ImportError: cannot import CustomHandler when trying to ...
0
votes
1answer
58 views
Django-piston make piston return full traceback of exception
How to make piston return full traceback of exception. By default it returns me only last error text. Like
id() takes exactly one argument (0 given)
Need to know which file and which line...
0
votes
0answers
36 views
Right way to validate a resource exists with django-piston?
I'm using django-piston to create a number of POST APIs which take in as a parameter an integer foo_id which is the id of a Django model that will be used in that API's logic.
I'm wondering what is ...
0
votes
1answer
95 views
django piston Circular reference detected while emitting response when using model
Am facing a problem with configuring piston for django, every time I specify the model name it runs I get the below error
RuntimeError at /en/vehicle/api/car.json
Circular reference detected while ...
0
votes
1answer
80 views
AttributeError: 'TestHandler' object has no attribute 'model' in django piston
This is a test.py file that tries to send data to the api endpoint:
import os
import requests
import uuid
def get_uid():
return str(uuid.uuid4())
oauth_consumer_key = 'abcd'
oauth_signature = ...
0
votes
0answers
273 views
ImportError: No module named models django
When trying to create an API app using django-piston (v 0.2.3) and including the app namespace in the base url.py
url(r'^news/', include('news.urls')),
url(r'^api/', include('api.urls')),
All my ...
0
votes
3answers
3k views
Using “Content-Type:application/json” to post in curl gives HTTP/1.1 400 BAD REQUEST
When I make a post request using the following
curl -i -d "username=rock&password=rock" http://my_VM_IP/api/1.1/json/my_login/
it generates the required response generating a token like ...
0
votes
0answers
92 views
HTTP Method “Patch” for Python's Piston Module
Through my extensive research I've discovered that there is an HTTP method becoming popular called "Patch" (it is being implemented in Rails 4.0). Its kind of like the PUT method, except it is used ...
1
vote
1answer
274 views
django-piston method is not allowed
I have this:
handlers.py
class ChatHandler(BaseHandler):
model = ChatMsg
allowed_methods = ('POST','GET')
def create(self, request, text):
message = ChatMsg(user = request.user, ...
1
vote
1answer
286 views
django piston not able to write to rc.BAD_REQUEST
I have django 1.4 and latest piston from pip as of yesterday (I tried to get the version but I didn't know how)
Everything seems to be working fine accept when I try to write to the rc.BAD_REQUEST. ...
0
votes
1answer
70 views
I use Django-piston, how i use handler.py to paging data from server?
My code
class PointHandlerDynamic(BaseHandler):
model = Points
fields = ('Point_ID', 'X_Coor', 'Y_Coor', 'Seat_ID_ID')
def Seat_ID_ID(self, instance):
return instance.Sear_ID.ID
...
4
votes
2answers
413 views
RESTFUL web services consumed by web and native mobile apps with authentication in python using django framework
I have to write RESTFUL web-services with authentication in python using django framework which will be consumed by web based clients and mobile native apps (Android and IOS).
the simple example ...
1
vote
1answer
510 views
How to write the django-piston handler to create and return ApiKey?
I'm currently working on the project that use Android for client and Django for web server. I decided to use piston-django to create REST API authentication and I've follow this instruction:
What is ...
1
vote
1answer
227 views
Simple Django filter query: group by primary key?
I am running a filter query in Django with range. I thought filter always returned a queryset that was grouped by the primary key, but it seems not.
These are my models:
class MCode(models.Model):
...
0
votes
1answer
91 views
Change return-fields in read method django-piston
i'm using django-piston to create my api. I need to know if possible to change the return-fields according to a parameter. I'm trying to return a thumbnail field, but i need to have the option to pass ...
1
vote
1answer
242 views
handlers error in django-piston
i got a this error in my django project when i implement another handlers for my django-piston.
Request Method: GET
Request URL: http://127.0.0.1:8000/api/getdata/
Django Version: 1.3.1
Python ...
1
vote
1answer
686 views
Descriptor 'date' requires a 'datetime.datetime' object but received a 'unicode'
I am using piston to write a JSON api for an application I am writing which handles recurring calendar events.
My API was working for regular events, when I attempted to add logic to handle the ...
1
vote
1answer
557 views
equivalent CURL for Lua, (Django API Json to Lua Json) POST method
I have a Django that having API for JSON, and I want it to get it in my Lua (Corona SDK) project.
if I CURL my Django project.
curl -l -X POST -d "message=getstrings" ...
1
vote
1answer
182 views
Limit queryset results based on model field, are there better ways?
basically i want to get the latest 30 log entries for every Host. Currently i'm doing this in django-piston.
def read(self,request):
val={}
for x in Host.objects.all():
...
2
votes
1answer
434 views
Only GET working in cross domain API request with django-piston
I'm not able to do POST/PUT/DELETE cross-domain request on my API using django-piston, I've CORS enabled using this script (based on this):
class CORSResource(Resource):
"""
Piston Resource ...
0
votes
1answer
252 views
django-piston add value foreign key
I'm trying to insert from REST API Django-piston a new value on my database.
I have the follow models
class Mobile_User(models.Model):
id = models.CharField(primary_key=True, max_length=255, ...
2
votes
1answer
163 views
django Piston: How can I define custom methods in a handler?
I have created a handler.py and want to write a method : getBooksForUser(). This method will return me all the books issued by a user.
The documentation says :
In addition to these, you may ...
2
votes
1answer
428 views
REST login with Django social_auth
I've been asked to provide a "Login with Facebook" functionality to an iOS app I am creating.
The app connects to a REST api created with Piston, the web application is created with Django and uses ...
1
vote
1answer
117 views
Django-piston takes huge response time in read
I have recently (a newbie rather) been using django-piston. When returning result from the read method, it takes a huge amount of time to generate/send response (for like 30,000 records with 6 ...
2
votes
1answer
224 views
Getting a full stack trace with Django-piston
I just started using django-piston.
Usually, in Django, when my views throw an exception (and I'm in DEBUG=True mode), I get a really nice, helpful 500-error page with stack trace.
But when my ...
2
votes
1answer
292 views
Analytics for tastypie
I am looking to add some sort of analytics to my Tastypie-powered API. I really enjoy Google Analytics for the regular web site however obviously it won't work for an API. How do you do analytics for ...
0
votes
2answers
304 views
Cannot resolve keyword 'model' into field. Piston with Backbone.js
I am trying to send a Backbone.js model as a POST to Piston and am getting an error:
Piston/0.2.2 (Django 1.3) crash report:
Traceback (most recent call last):
File ...
1
vote
1answer
229 views
webservice + facebook-connect
I'm working on a project that consist in an IOS App and a webservice written using django-piston. Right now I'm using basic HTTP Auth use the webservice. Any idea of how can i integrate facebook ...
0
votes
1answer
161 views
Correct way of initializing internal data for API in Django with Piston/Django-tastypie vs jsonrpc
After some API implementations, using jsonrpclib in Python, I need to migrate them inside a Django Framework project. I am quite new in Django and Piston/tastypie, but have some experience using ...
0
votes
2answers
288 views
Why use django related REST API packages for non ORM calls?
What are the pros and cons for using django related REST API packages such as tastypie, piston or django-rest for non-ORM calls over simply using views?
4
votes
1answer
497 views
Python Piston equivalent for consuming RESTful APIs?
Is there something equivalent of Django Piston but for consuming RESTful API's?
3
votes
2answers
692 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 ...
2
votes
1answer
305 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 ...
7
votes
1answer
805 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 ...
0
votes
1answer
220 views
Accessing a django-piston REST API via a django view within the same project
I'm building a small web service. To showcase what the service can do I am going to build a lite-weight interface. I'm having a hard time figuring out how my REST API and regular Django views can play ...
1
vote
2answers
159 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?
...
0
votes
2answers
121 views
Django-piston and UserProfile
I'm using Django-piston and I'd like to get user objects that include user profile data.
I'm trying :
class UserHandler(BaseHandler):
model = User
fields = ('id', 'username', ...
0
votes
1answer
126 views
Empty docstrings when running django-piston docs under nginx
I'm using django-piston for my REST json api, and I have it all set up for documentation through pistons built in generate_doc function. Under the django runserver, it works great. The template that ...
1
vote
1answer
298 views
Call piston handler in django view function
I'm using django piston to implement my RESTful api. I already implemented an api which is
/api/[uuid of user]
will give all the information related to uuid of user.
However, I also want to ...
0
votes
1answer
168 views
How to use Django decorators for Piston handler methods?
Is it possible to use Django (and self-made) view decorators with Piston handler methods? The problem is that with the methods, the first argument is self (the handler) and the second the request, ...
20
votes
3answers
10k 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 ...
0
votes
3answers
868 views
UnboundLocalError: local variable 'prod_Available' referenced before assignment
I am developing a reservation system, and i have a function that save the quantity of a product... My question is why I got this problem ? when i
`curl -l -X POST -d ...
2
votes
2answers
2k views
how to get day name in datetime in python
how can I get the day name (such as : Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, and Sunday) in datetime in python?...
here is my code in my handlers.py
from django.utils.xmlutils ...


