Skip to main content

A flexible & capable API layer for Django.

Project description

Creating delicious APIs for Django apps since 2010.

Currently in beta (v0.9.11) but being used actively in production on several sites.

Requirements

Required

Optional

What’s It Look Like?

A basic example looks like:

# myapp/api.py
# ============
from tastypie.resources import ModelResource
from myapp.models import Entry


class EntryResource(ModelResource):
    class Meta:
        queryset = Entry.objects.all()


# urls.py
# =======
from django.conf.urls.defaults import *
from tastypie.api import Api
from myapp.api import EntryResource

v1_api = Api(api_name='v1')
v1_api.register(EntryResource())

urlpatterns = patterns('',
    # The normal jazz here then...
    (r'^api/', include(v1_api.urls)),
)

That gets you a fully working, read-write API for the Entry model that supports all CRUD operations in a RESTful way. JSON/XML/YAML support is already there, and it’s easy to add related data/authentication/caching.

You can find more in the documentation at http://django-tastypie.readthedocs.org/.

Why Tastypie?

There are other, better known API frameworks out there for Django. You need to assess the options available and decide for yourself. That said, here are some common reasons for tastypie.

  • You need an API that is RESTful and uses HTTP well.

  • You want to support deep relations.

  • You DON’T want to have to write your own serializer to make the output right.

  • You want an API framework that has little magic, very flexible and maps well to the problem domain.

  • You want/need XML serialization that is treated equally to JSON (and YAML is there too).

  • You want to support my perceived NIH syndrome, which is less about NIH and more about trying to help out friends/coworkers.

Reference Material

Commercial Support

If you’re using Tastypie in a commercial environment, paid support is available from Toast Driven. Services offered include:

  • Advice/help with setup

  • Implementation in your project

  • Bugfixes in Tastypie itself

  • Features in Tastypie itself

If you’re interested, please contact Daniel Lindsley (daniel@toastdriven.com).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-tastypie-0.9.12.tar.gz (704.1 kB view details)

Uploaded Source

File details

Details for the file django-tastypie-0.9.12.tar.gz.

File metadata

File hashes

Hashes for django-tastypie-0.9.12.tar.gz
Algorithm Hash digest
SHA256 5b9a8d2e1ec562b23f4c94cfe387262f4c573dfdf673af80f13b1d137dbf841f
MD5 7359f16d79b76865293184fd1d6773b7
BLAKE2b-256 cd1e9ceb1e75c5204b35ab7c5bbd240eaa7eb3b672e923431eb1a9e9d37b8f65

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page