0
votes
0answers
42 views

add() argument after * must be a sequence, not Result

Models.py class Result(models.Model): host = models.CharField(max_length=200) type = models.CharField(max_length=1, choices=TYPE_CHOICES) active = ...
2
votes
2answers
32 views

Conditionally Showing All or Some Fields from Single TastyPie Resource

Can I use a single TastyPie resource and conditionally have it return all or a subset of columns? I have an employee database, which I can pull a full record via: /api/v1/employee/. But certain data ...
0
votes
1answer
11 views

django tastypie alter model fetching

I'm trying to find a way to make tastypie return results that are a little bit different than the default ones. For example, by default the api returns the following: { created_at: ...
0
votes
1answer
30 views

Removing the list endpoint from a resource on tastypie

I have a Resource on my api that always return the logged-in user. The resource is read-only. I wanted the list uri to act as the detail uri, and remove the detail urls. So, /api/v1/user/ would ...
0
votes
1answer
14 views

how to delete tastypie model resource index

I'm implementing a rest api using django-tastypie. My api resource is defined as follows: class AddressResource(ModelResource): class Meta: resource_name = 'address' queryset = ...
1
vote
1answer
35 views

How can I retrieve a distinct list of objects for each pair of django users?

I have a private user to user messaging model. (Photographer is a ForeignKey to the Django User) class Message(models.Model): sender = models.ForeignKey(Photographer) recipient = ...
1
vote
1answer
33 views

Authenticating Developers with APIKey and Users with BasicAuth/OAuth

I've looked around for this but can't seem to find a canonical answer. I'm trying to follow best practices. Maybe I'm thinking of it the wrong way. I'm thinking of my API users as two different ...
0
votes
1answer
36 views

Tastypie annotation error “empty attribute…”

I'm using tastypie to create an API and I'm stuck trying to annotate a Sum total of decimals over a certain type. Each transaction has an associated bucket type and I'd like to group by bucket type, ...
0
votes
2answers
65 views

How can I implement blocking using Django-relationships?

I've been using django-relationships to allow users to follow each other. If Bob follows Joe. Bob will be able to see all of Joe's photos. However if Bob blocks John, John will not be Bob's photos. ...
0
votes
1answer
45 views

__init__() got an unexpected keyword argument 'default' in json/__init__.py in dumps

I have a django server running, and, out of nowhere, I got this error. I really have no idea what changes led to this. I'm trying to solve this for hours, but I can't find why this is happening. ...
0
votes
0answers
35 views

Django-Tastypie Return Multiple Object Types In A ModelResource Response

I'm trying to return multiple object types in a response. Specifically I would like to return the query that produced these results to the client. This is especially useful in say mobile applications, ...
0
votes
3answers
30 views

django tastypie - how to stop model creation when sending post request

I am doing like this: def hydrate(self, bundle): manipulate data here Now, based on the data, I want to check whether its already available or not. And want to create object if it doesnt ...
1
vote
1answer
38 views

Dynamically create Resources for multiple django models in tastypie

I need to expose multiple existing django models to tastypie. I got the basics covered with creating af ModelResource and registering it in urls.py. However, I would like to avoid writing Resource ...
1
vote
1answer
23 views

Get model object from tastypie uri?

How do you get the model object of a tastypie modelresource from it's uri? for example: if you were given the uri as a string in python, how do you get the model object of that string?
0
votes
0answers
28 views

Select/Update/Insert on TastyPie Bulk (PATCH) Request Based on Index?

Can I tell TastyPie to (in order) SELECT, UPDATE or INSERT a resource entry during a bulk (PATCH) insert? The trick to the question is the UPDATE portion. By default TastyPie will SELECT an ...
0
votes
0answers
17 views

django-tastypie SimpleCache not accepting arguments

I'm trying to implement the basic caching on Tastypie, however when I add in the SimpleCache, it can only be put in without arguments. i.e cache = SimpleCache() The following as recomended in the ...
1
vote
0answers
26 views

Efficient Multiple TastyPie Resource Updates Across Multiple Tables

What is the most efficient way to insert (or update) multiple records in a TastyPie resource, where multiple tables are being updated? I have the following entry being sent via AngularJS: var ...
1
vote
1answer
41 views

Let tastypie client do CRUD without foreign key lookups

I'm using TastyPie to create a REST client/server for accessing some data about our system-level build post tests. I'd like the client to be able to ignore the fact that product is stored internally ...
0
votes
1answer
20 views

How to test django API with asychronous requests

I am developing an API using Django-TastyPie. What API do? It checks that if two or more requests are there on the server if yes it swap the data of both the requests and return a json response ...
0
votes
1answer
36 views

Retrieving parent url parameters from ajax call?

say I have a view at url(regex=r'^(?P<slug>[-\w]+)/$'...) and in the template of that view I have an ajax post to an api (via tastypie) at url(regex=r'^post/$'...) Is there a way in the ...
0
votes
0answers
28 views

Backbone collection.create always return error

I'm using tastypie on django backends, here is how I create a new model addEdu:function(e){ e.preventDefault() var form_data = { user: ...
1
vote
1answer
28 views

Tastypie in IIS returns HTML instead of JSON

When issuing a POST to Tastypie (Django) to add a new "project" object to my database, the following code works fine outside of IIS, in debug mode. $.ajax({ url: ...
1
vote
2answers
70 views

Django Tastypie add Content-Length header

I am quite new in Django development. I have a Resource and Model: Model class Player(models.Model): pseudo = models.CharField(max_length=32, unique=True) ModelResource class ...
0
votes
1answer
59 views

exclude some fields in tastypie post data

recently i start an API for my project by django-tastypie. actually I want to exclude some field requirement in post requests. Assume that my model have four fields and all of them defined as ...
1
vote
1answer
110 views

Django Tastypie Many to Many (self) field update using a PATCH or PUT request?

I have this model: class UserSub(models.Model): user = models.OneToOneField(User, related_name='userSub') amigos = models.ManyToManyField('self', null=True) title = models.TextField() ...
0
votes
1answer
21 views

Updating inherited attributes in django model objects

I have troubles updating attributes that are inherited from other tables class AgentCategory(models.Model): """ Agent Category """ class Meta: verbose_name_plural = "agentcategories" name ...
0
votes
3answers
35 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
0answers
28 views

Streaming/Partial Results Through Tastypie

Is there a way to stream/return partial results through tastypie (it seems to be possible in Django in general). I have an API that needs to do a bunch of requests to external services in order to ...
0
votes
2answers
158 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
81 views

Disable pagination in Django tastypie?

I have a tastypie api that I'm working on and in the list views for my api resources I'd like to get the entire list of data without pagination applied, regardless of the number of objects in the ...
1
vote
0answers
87 views

Dynamic Models in tastypie

I have a class which returns json [{ 'title': 'Test Blog Title 1', 'content': 'Blog Content', 'author_name': 'User 1' }, { 'title': 'Test Blog ...
18
votes
2answers
508 views

retrieving the 'many' end of a Generic Foreign Key relationship in Django

In Django, when I request a resource that has a many-to-many relationship, I end up getting all the items in child part of the relationship, even those not directly related to the parent. It'll be ...
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
0answers
60 views

Django tastypie advanced filtering

I'm trying to implement an advanced filter in my Resource but i need some help to built and apply my own filters. The goal is to get filters info in my api UserResource before to get objects list ...
0
votes
1answer
51 views

Tastypie query limit

Is there any way to handle query per user limitations with tastypie API library ? I would like for example to limit all users to 200 queries per day. I looked all over the documentation and only ...
0
votes
2answers
115 views

Django Tastypie Record-Level Authorization

I'm having trouble implementing record-level authorization with tastypie 0.9.12+. My setup looks something like this: Model class UserProfile(models.Model): def __unicode__(self): ...
1
vote
0answers
50 views

Serializing a model which has a foreign key to Django Auth User

How can one serialize a model which has a foreign key to Django auth user so that a username can be retrieved? This is what I have tried through Tastypie: def dehydrate(self, bundle): posts = ...
0
votes
0answers
33 views

How to use dehydrate within UserResource

I want to add fields to the userResource within its dehydrate function. My approach is to create an UserResource within view.py for a specific username. I found this within the tastyPie Cookbook: ...
1
vote
2answers
96 views

How to filter an object based on a DateTimeField range in Python (Django) using Tastypie

How can one filter an object based on a datetime field range using Tastypie. I have a Post model: class Post(models.Model): title = models.CharField(max_length=40) postTime = ...
1
vote
2answers
61 views

Django-tastypie - how to include choices?

I have a model field like this location_state = models.CharField(max_length=255, null=True, blank=True, choices=STATE_CHOICES) Its value is returned by tastypie, but for rendering a listbox a list ...
0
votes
1answer
71 views

Django-tastypie: how to ModelResource programmatically?

I have created a number of Django-tastypie resource definitions in resources.py. Most of them will be created by posting from javascript side (backbone-tastypie), but some of them I would like to be ...
2
votes
2answers
203 views

Does SessionAuthentication work in Tastypie for HTTP POST?

I am able to do GET to work with SessionAuthentication and Tastypie without setting any headers except for content-type to application/json. HTTP POST however just fails even though the Cookie in the ...
0
votes
0answers
48 views

Restful API for a git-versioned wiki

I'm trying to design a URL scheme for a wiki that has the following properties: Markdown syntax pages page sections (defined by header structure) git-versioned using pygit2 I have to following ...
1
vote
1answer
198 views

How to add data to tastypie resources in regular django views

I am running into a problem trying to include tastypie resources in a larger json response in a regular django view. I would like to have the view return something like this (based on a queryset ...
0
votes
0answers
239 views

TastyPie Nested POST failing to add objects - NoneType has no attribute error

I have a very simple nested model. class Game(models.Model): name = models.CharField(max_length=200) description = models.TextField() user = models.ForeignKey(User) class ...
0
votes
1answer
88 views

Creating a dynamic ORM resource in tastypie

I'm looking to create a dynamic resource in tastypie. Basically the idea is that there are a lot of models to hook up, so this may help save time with the standard no-frills resources. I have most ...
0
votes
2answers
107 views

Django Tastypie - serving emoji that are stored in db

I'm using django and tastypie for my api. the db is MySQL. After a few days of fiddling around i managed to store emoji icons in the db using utf8mb4 character set. When querying the db ...
4
votes
1answer
229 views

Django Tastypie slow POST response

I'm trying to implement a Tastypie Resource that allows GET & POST operations following a per user-permission policy, the model is pretty simple (similar to the Note model in Tastypie ...
4
votes
1answer
379 views

Tastypie Nested Resources - cached_obj_get() takes exactly 2 arguments (1 given)

I'm trying to use the example here: http://django-tastypie.readthedocs.org/en/latest/cookbook.html#nested-resources for some reason i get: cached_obj_get() takes exactly 2 arguments (1 given) ...
0
votes
1answer
102 views

django queryset with mongodb

I'm working on a Django app using the tastypie API, I basically want to create objects and then filter them by date so that I know which objects are new ('give me all the objects from that date to ...

1 2 3 4 5