Quick Start¶ Add tastypie to INSTALLED_APPS. Create an api directory in your app with a bare __init__.py. Create an <my_app>/api/resources.py file and place the following in it: from tastypie.resources import ModelResource from my_app.models import MyModel class MyModelResource(ModelResource): class Meta: queryset = MyModel.objects.all() allowed_methods = ['get'] from django.urls.conf import re_pa