Top "Tastypie" questions

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.

iOS app with Django

So we currently have a website that was created using Django. Now, we would like to create a native iOS …

ios django restkit tastypie
Django Tastypie Advanced Filtering: How to do complex lookups with Q objects

I have a basic Django model like: class Business(models.Model): name = models.CharField(max_length=200, unique=True) email = models.…

python django tastypie django-q
Django Tastypie: How to Authenticate with API Key

I'm making an internal API with TastyPie. I have from tastypie.authentication import ApiKeyAuthentication class MyResource(ModelResource): Meta: authentication = ApiKeyAuthentication() …

python django tastypie
No module named constants

I want to do sample application with Tastypie framework. I added Tastypie to Installed app and modified urls.py as …

python django tastypie
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 …

python django django-models tastypie
How to generate an AccessToken programmatically in Django?

I'm setting up an API. Everything is working. I'm creating a token via OAuth2 python lib. I'm using TastyPie for …

python django tastypie oauth2app
How can I login to django using tastypie

I'm trying to override is_authenticated in my custom authentication. I have something simple (to start with) like this: class …

python django tastypie
Partial Updates (aka PATCH) using a $resource based service?

We're building a web application using Django/TastyPie as the back-end REST service provider, and building an AngularJS based front …

angularjs tastypie
"detail": "CSRF Failed: CSRF token missing or incorrect."

I'm making RESTful API using Tastypie, and when I try to POST/PUT/DELETE a request it says: "detail": "CSRF …

django tastypie django-csrf
How to create or register User using django-tastypie API programmatically?

My code below kinda works, it creates the User object and saves but it doesn't save the password: class CreateUserResource(…

django tastypie