Tastypie is a reusable Django App and is suitable for providing an API to any application without having to modify the sources of that app.

learn more… | top users | synonyms

0
votes
2answers
205 views

Create Resource on Django Tastypie with a Java POST request but getting 500 error code

I am trying to post a new resource to a django tastypie API with a Java Client, but i am getting a Http 500 error code. Basically i am just trying to make a new reservation on my api from the client. ...
0
votes
1answer
147 views

Django REST API - re-use data form a single call like in Backbone.js

I have set up a plain vanilla Django app (no backbone.js or other MVC framework) and integrated Tastypie. Essentially, all the information I will require on every page is available from a single call ...
0
votes
1answer
35 views

What do fields in Django-tastypie do?

What is the point of defining fields in a tastypie resource? I read the documentation When designing an API, an important component is defining the representation of the data you’re presenting. ...
2
votes
1answer
216 views

tastypie filter a foreignkey related resource

I have a problem that i really can't solve like anyhow. All i want is, to get from api/epg the channels that have their shows in the range of now and 2 hours later. Somehow i get all the channels ...
0
votes
0answers
47 views

put request without primary key in url

I'm new to tastypie but have created the following api: class UserScoreResource(ModelResource): category = fields.ForeignKey(CategoryResource, 'category') user = fields.OneToOneField(UserResource, ...
1
vote
2answers
501 views

How do you upload a file with a POST request on django-tastypie? [duplicate]

Possible Duplicate: Django-tastypie: Any example on file upload in POST? I currently do cURL POST requests to my API like so curl --dump-header - -H "Content-Type: application/json" -X ...
0
votes
1answer
95 views

Django+Tastypie: Deleting only a couple of objects

I'm using Django-Tastypie to provide a REST-API for my web application. In this case I have a PhotoGallery object, which references to a couple of Photos using a intermediate table (using through on ...
0
votes
1answer
150 views

Django tastypie nested toManyField pagination

I have this tastypie resource: class BlogPostResource(ModelResource): comments = fields.ToManyField('comments.api.CommentResource', 'comments', full=True) The blog endpoint /api/v1/blog/13 ...
0
votes
1answer
57 views

TastyPie and properties

If I have a django model with django fields and some properties called by property() function, can tastypie interact with this virtual fields? Or I have to include logic into tastypie's dehydrate, ...
2
votes
1answer
129 views

Exposing model method with Tastypie

I am currently working on implementing an API into my Django project and Tastypie seemed like it would be most suitable. What I can't seem to work out is how to expose a function within my model ...
0
votes
0answers
175 views

Problems with backbone.js, backbone-tastypie, require.js

I have trying to put together backbone with backbone-tastypie and backbone.localstore with require but I havent been capable to make it work, bellow parts of mi code. backbone-tastypie.js //amd ...
0
votes
1answer
66 views

loosing model instance after saving in backbone

I'm using backbone with tastypie adapter and jquery for interacting with DOM. I found something in backbone that I can't understand. I tried to simplify the code for this question. Here is my app.js: ...
1
vote
2answers
104 views

Whats the difference between a TastyPie Resource and Django view that returns a JSON object? [closed]

Why would I want to use TastyPie when I could just return JSON from a Django view?
0
votes
1answer
585 views

Tastypie with application/x-www-form-urlencoded

I'm having a bit of difficulty figuring out what my next steps should be. I am using tastypie to create an API for my web application. From another application, specifically ifbyphone.com, I am ...
0
votes
1answer
246 views

How to make DS.belongsTo working with ember-data and django-tastypie

Can't imagine why I can't get related item for and model item. I have a models App.Staple = DS.Model.extend({ description: DS.attr('string'), name: DS.attr('string'), album: ...
1
vote
1answer
150 views

Tastypie: include computed field from a related model?

I've looked through Tastypie's documentation and searched for a while, but can't seem to find an answer to this. Let's say that we've got two models: Student and Assignment, with a one-to-many ...
0
votes
1answer
267 views

Getting 401 on PATCH Request sent with AFNetworking/RestKit but 202 sent from Browser

So I have this RESTful API running on top of my Django server by using Tastypie. So I am doing the following code from javascript, and everything works fine. var newData = {}; ...
0
votes
1answer
117 views

consuming a service layer with django-tastypie

I've been using tastypie for a few days and I must say it is amazing for CRUD operations. I've implemented validators to do some basic business validations but now I need to do something extra... ...
3
votes
1answer
134 views

In tastypie-swagger, what should be the value for 'TASTYPIE_SWAGGER_API_MODULE' in setting file?

In tastypie-swagger, what should be the value for TASTYPIE_SWAGGER_API_MODULE in setting file?
1
vote
1answer
207 views

TastyPie / RestKit 501 Not Implemented

I'm using tastypie for a REST interface in django, from Xcode I can call the server and get data successfully using RestKit however I cannot POST data. I know it's hitting the right area as I had a ...
-1
votes
1answer
33 views

posting to model with ToOneField

I'm new to tastypie and am trying to post to the following model: class UserScore(models.Model): """ User Scores, used to categorise users """ user = models.OneToOneField(User) ...
0
votes
1answer
73 views

How to retrieve an object that was just created in Tastypie

Using Tastypie and Django User Streams, I am trying to build an activity feed. I have successfully built the functionality for favoriting below: class LikeResource(ModelResource): user = ...
0
votes
1answer
36 views

put request returning 401

I'm new to django/tastypie. I've built an api and have get requests working fine but every time I run a post/put request I'm getting a 401. This is my api: class CategoryResource(ModelResource): ...
-1
votes
1answer
312 views

How to create a news feed like Facebook using Django, Tastypie, Redis and the task queue Gearman? [closed]

Can anyone recommend or create a tutorial on how to make a news feed similar to that of Facebook's only using Django, Tastypie (webservice API framework for Django), Redis (key-value store) and ...
0
votes
1answer
89 views

Get full instance from URI in tastypie

On POST I use the obj_create function to create a new instance of a workspace model. A workspace has an owner which is a Foreign field to a User. The data send from the client contains only a URI for ...
0
votes
0answers
68 views

Creating an Activity Feed Using Django Signals and Tastypie

Is it possible to build and render a django activity feed using Tastypie and Django Signals? I already have my commenting, liking and following resources set up. But I don't know how I can create an ...
0
votes
1answer
48 views

Filter GenericForeignKeyField in django tastypie

Using GenericForeignKeyField in a django-tastypie resource, is there a way to filter results based on the content_type? I would like to add a filter to the Meta class, just like with a regular field, ...
0
votes
1answer
33 views

some of json fields not being parsed by json object

I am able to recieve the json response from a tastypie rest service. the problem i am having now is fetching individual values from the json object. here is the problem ...
1
vote
2answers
151 views

Turning a usual django website into a RESTful api

I've been working on. A web project for few months now.And it's a simple website with usual django models views urls and templates,with simple Ajax using jquery for the templates. Now thinking of ...
0
votes
1answer
53 views

slumber returns empty string instead of object data

I've built an API for my Django app using Tastypie and it works OK when I send data using commandline curl. But when I try to use slumber like this: api = slumber.API('http://localhost:8000/api/v1/', ...
3
votes
1answer
320 views

django-tastypie: Posting to a Resource having ManytoMany field with through relationship

I'm working on a API for a project and I have a relationship Order/Products through OrderProducts like this: In models.py class Product(models.Model): ... class Order(models.Model): ...
0
votes
1answer
124 views

Tastypie - sort nested array

I am calling data that includes a nested array. Example: data = [ 'name':'John', 'likes': ['Women', 'Bars', 'Women_In_Bars', 'turtles'], 'name': 'Steve', 'likes': ['Men', 'Clubs', ...
0
votes
1answer
89 views

jQuery — CORS and Headers (Tastypie)

I'm accessing an API via a CORS request. The API response for create sets a 'Location' header of the newly created resource. I am unable to access this via jQuery's xhr object. var location = ...
1
vote
1answer
82 views

Tastpie, non-orm endpoints

I'm trying to figure out if it makes sense to create non-orm endpoints for my api. I've seen the "Using Tastypie With Non-ORM Data Sources" section of the Docs, but I'm thinking more about processing ...
0
votes
0answers
105 views

How to make OneToMany relation over django-tastypie-mongoengine with django-registration?

Here are my resources: class UserResource(resources.MongoEngineResource): ratings = fields.ReferenceField(to='api.ActivityResource', attribute='ratings', full=True) class Meta: ...
2
votes
0answers
98 views

tastypie mongoengine rest api for DynamicDocument

I am trying to save dynamic document in mongo using testypie and mongoengine my code is like this: class Test(DynamicDocument): pass class TestResource(resources.MongoEngineResource): class ...
0
votes
1answer
86 views

tastypie - where to restrict fields that may be updated by PATCH?

I have a working GET / tastypie (read-only) solution. I've allowed PUT/PATCH requests and been successful in PATCHING a record. However I want to limit PATCH capability to only certain fields, on ...
0
votes
0answers
86 views

I am getting “cannot deepcopy this pattern object” using django-tastypie

I am getting "cannot deepcopy this pattern object" TypeError in urls.py v1_api.register(MyResource()) MyResource is: class MyResource(resources.MongoEngineResource): class Meta: ...
1
vote
1answer
136 views

Tastypie Mongoengine ReferenceField dereference?

Trying to build REST interface with tastypie and mongodb. I have schema class ObjectsA(Document): attr1 = StringField(max_length=12, required=True) class ObjectsB(Docuemnt): attr2 = ...
1
vote
1answer
154 views

Tastypie returns string representation rather than valid array for reverse foreignkey lookup

UPDATE: Is the dehydrate within the LocationResource to blame? I have an usual situation where a reverse lookup via a foreignkey is returning a nested string representation of an array, rather than ...
0
votes
1answer
34 views

TastyPie Resource include Set Items

I was wondering what is the best way to include objects from another model that are related on a foreignkey? Example: class First(models.Model): name = models.CharField(max_length=255) class ...
2
votes
1answer
129 views

Generating a thumbnail for a Tastypie API with easy-thumbnails

I'm trying to use the dehydrate method to generate my thumbnail like so: class PostResource(ModelResource): user = fields.ForeignKey(UserResource, 'user') class Meta: queryset = ...
0
votes
0answers
241 views

Ajax Post Request to TastyPie Doesn't Do Anything

I am having an issue with the Django TastyPie API and creating a post request in JQuery. The curl request: curl --dump-header - -H "Content-Type: application/json" -X POST --data ...
0
votes
2answers
279 views

Are there authentication examples with Django and Tastypie?

Are there basic authentication examples with Django and Tastypie?. I'm a little bit confused about how the authentication in Django works, specially with Tastypie.I wanna know how the authentication ...
2
votes
2answers
84 views

django tastypie support for mashery iodocs?

Mashery iodocs is a tool for documenting API. It needs two configuration json objects to run. It would be nice to have this objects generated automatically by tastypie. Tastypie can generate json with ...
1
vote
1answer
110 views

python dynamically create class with inner class

I'm using django-tastypie and I need to create classes like this from my django models: class MyModelResource(ModelResource): class Meta: queryset = MyModel.objects.all() ...
0
votes
1answer
150 views

underscore.js - _.groupBy nested attribute

Tastypie returns an array, including nested resources as follows: data = [ {"adult_price": "123", "child_price": "123", "currency": [{"abbrev": "USD", "id": "1", "name": "US Dollars", ...
0
votes
0answers
111 views

Tastypie - custom serializer

I've written and tested a simple function that takes a JSON array (i.e. the current, standard output for Tastypie), and performs a itertools.groupby() and returns the data in my desired format. The ...
0
votes
1answer
144 views

django-tastypie with django-taggit

I am using django-taggit for tagging. I have django-tastypie REST resource for the same object. While exposing the REST resource, it doesn't fetch the tag field(e.g. equivalent to model.tags.all()). ...
1
vote
1answer
268 views

Convert a queryset to json using tastypie resource

I have a tastypie resource for a model. I also have a view which comes up with a queryset which needs to be serialised and sent to client. I am looking for a way to let tastypie resource handle the ...

1 3 4 5 6 7 14