0
votes
1answer
17 views

Tastypie - Linking to a “ForeignKey”

I have two legacy models listed below. The Library.libtype_id is effectively a foreign key to LibraryType when libtype_id > 0. I want to represent this as a ForeignKey Resource in TastyPie when that ...
0
votes
1answer
22 views

How can I get tastypie to return related table data in the response

I'm new to Django and I'm experimenting with using tastypie to create a simple API. I can't seem to figure out the proper way to show related information in one Resource from another. Models.py ...
0
votes
1answer
37 views

Django Tastypie custom model method

I just start using Django with Tastypie in a Rest application with two models. Parameters are snipped for brevity. class Player(models.Model): pseudo = models.CharField(max_length=32, ...
0
votes
1answer
18 views

Posting in several tastypie resources simultaneously

Here's what I'm trying to do : The user creates an Event in my application. Here's the model : class Event(models.Model): name = models.CharField(max_length=40) organizer = ...
0
votes
2answers
56 views

Filter in django: the last post of each user

I have 2 models, Author and Post , how can I make a filter who can select the last post (by id field) of each Author in one only line?, the bad approach for me is : authors = Author.objects.all() ...
0
votes
1answer
80 views

Django-tastypie One-To-Many relationship

I'm trying to create a resource (Observation) that has 0 to unlimited comments. I'm stuck at the following error: "error": "The model '<Observation: Observation object>' has an empty attribute ...
0
votes
3answers
33 views

Iterating through a data list and edit an object's attribute based on the list

I would like to retrieve a list of PUT data, iterate through this list and update the object based on the attributes in the list. My codes are as follows: property_id = data['id'] ...
0
votes
2answers
139 views

Django with tastypie how to refresh queryset?

Some tables in my database are updated from some background python scripts that are constantly running in the background (doing data mining). Django had a hard time knowing the data was updated ...
1
vote
1answer
56 views

django query on manytomany field

I'm using tastypie to get a REST API for my django application. My models include station (e.g. railway station), route (e.g. Chicago to St. Louis), and routedetail, which is an intermediate model for ...
0
votes
0answers
40 views

How to build RESTful API for django.contrib.comments?

I have a Generic Relationships in tastypie and incorporated the same in my resource for django.contrib.comments.models.Comment My resource looks like this. It works fine for GET without the generic ...
0
votes
2answers
54 views

tastypie path to resources

I'm setting up related fields in my tastypie api. I have this in my api.py file: class PeopleResource(ModelResource): event_id = fields.ForeignKey(EventResource,'event', full=True) answer_link = ...
-1
votes
2answers
66 views

Access “server-side” model methods on TastyPie Resource

I got this Resource and It's working fine and listing all the attributes from Employee's. class EmployeeResource(ModelResource): journey = fields.ForeignKey(WorkJourney, 'work_journey') class ...
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, ...
0
votes
1answer
123 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
2answers
277 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 ...
1
vote
1answer
217 views

Django Tastypie: Adding multiple models to a single Tastypie Resource

I have the following models in my Django Application. The BasicInfo and AddressInfo tables are linked to the Customer table using the id column of the Customer Table, which is the customer_id column ...
1
vote
3answers
118 views

Django raising DatabaseError running a Model.objects.get

I am using Django 1.4, postgres 9.1.x, and Tastypie 0.9.11 to create an API. I have defined the following model: class Activity(models.Model): company = models.ForeignKey(Company) ...
3
votes
0answers
200 views

Update with Tastypie in Resource with Foreign Keys

I have a problem (unsupported operand type(s) for ** or pow(): 'Decimal' and 'NoneType') with resources involved in foreign key constrains. Here is a piece of code (a contacts belongs to a department ...
0
votes
1answer
413 views

Django Tastypie POST request for OneToOne relation

I have recently started django-tastypie and so far loving the framework. With said that, I am getting below issue on POST for OneToOne relation to model and spent good amount of time but couldn't ...
1
vote
1answer
600 views

How to create new resource with foreign key in TastyPie

I'm still new to tastypie, but it seems like a really neat library. Unfortunately, I'm having some difficulties with it. I have two models, and two resources associated with those models: class ...
0
votes
1answer
192 views

Reverse Relationship with Tastypie, AttributeError

I have a resource in which I'm trying to expose its' votes. class ViewPostResource(ModelResource): user = fields.ForeignKey(UserResource,'user',full=True) votes = ...
0
votes
1answer
109 views

Django Tastypie - Localization, db schema

I'm relatively new to Django and Django tastypie, so my question might be quite trivial. I'm trying to implement a RESTFUL service with tastypie for localizable text. My Django resources are: #The ...
0
votes
1answer
132 views

django-tastypie: How can I get only one object from ManyToMany relation?

Here is my Menu model: class Menu(models.Model): name = CharField(max_length=255) shop = ForeignKey(Shop) is_active = BooleanField(default=False) What I need is, in ShopResource, ...
0
votes
1answer
248 views

Display information from Backbone.js related objects

What is the best way to display information from related objects on my Backbone.js wired front-end when on the backend these attributes are stored on separate Django models in a PostgreSQL database? ...
3
votes
3answers
608 views

Django TastyPie PUT Nested User Model Correctly

I'm trying to go with-the-grain using Django TastyPie to update my models. I have an Identity model, acting as a wrapper around default Django user model: class Identity(ProfileBase): user = ...
2
votes
3answers
269 views

Populate a o2m ModelResource

Given the following code I was wondering how to populate RecordsResource with each real record data: models.py class Record(models.Model): content_type = models.ForeignKey(ContentType, ...
4
votes
1answer
656 views

How do I filter on a field in a related object?

If I try to filter on a field in a related object then Tastypie returns an error. For example, running curl -H "Accept: application/json" \ ...
0
votes
1answer
103 views

Multiple Backbonejs requests to get related model data

I built a RESTful API with these two resources (with tastypie) : class PhotographerResource(ModelResource): album = fields.ToManyField('core.api.AlbumResource', 'album_set') class Meta: ...
0
votes
1answer
61 views

Can I make it so that only certain fields are changeable with a PATCH?

I have already made it so that only the object's owner can call a PATCH command on a resource, but I would like this user to only be able to update certain fields within this resource. I can do this ...
10
votes
2answers
2k views

How to expose a property (virtual field) on a Django Model as a field in a TastyPie ModelResource

I have a property in a Django Model that I'd like to expose via a TastyPie ModelResource. My Model is class UserProfile(models.Model): _genderChoices = ((u"M", u"Male"), (u"F", u"Female")) ...
2
votes
1answer
463 views

Django Tastypie include count on many-to-many fields

Say I have two models in Django - an Actor and a Movie model with many to many relationship between them. Now I've defined API calls for both of these models in Tastypie but when I retrieve multiple ...
8
votes
7answers
1k views

Django tastypie and GenericForeignKey

I have Page model with GFK. class Page(models.Model): title = models.CharField(max_length=200) content_type = models.ForeignKey(ContentType,null=True,blank=True) object_id = ...
2
votes
2answers
593 views

Is it possible to order by an annotation with django TastyPie?

I'm trying to order by a count of a manyToMany field is there a way to do this with TastyPie? For example class Person(models.Model): friends = models.ManyToMany(User, ..) I want ...
2
votes
1answer
2k views

django-tastypie: linking a ModelResource to a Resource

I'm currently trying django-tastypie to design a RESTful api. I'm facing a problem: # the RevisionObject retrieve commits info through pysvn # This Resource is fully functionnal (RevisionObject code ...
0
votes
1answer
1k views

How do I return data from a related model in Django Tastypie?

How do I bring in the information from another model? I have two models Article, and ArticleBody Article containing the main info and ArticleBody containing a loop of body and image information ...