Skip to main content

A flexible & capable API layer for Django.

Project description

Docs CI Code Coverage Version Downloads

Creating delicious APIs for Django apps since 2010.

Currently in beta but being used actively in production on several sites.

Requirements

Core

  • Python 3.6+, preferably 3.8+ (Whatever is supported by your version of Django)

  • Django 2.2, 3.2 (LTS releases), 4.0, or Django 4.1 (latest release)

  • dateutil (http://labix.org/python-dateutil) >= 2.1

Format Support

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.urls.conf import re_path, include
from tastypie.api import Api
from myapp.api import EntryResource

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

urlpatterns = [
    # The normal jazz here then...
    re_path(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 https://django-tastypie.readthedocs.io/.

Why Tastypie?

There are other 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).

Reference Material

Getting Help

There are two primary ways of getting help.

  1. Go to StackOverflow and post a question with the tastypie tag.

  2. We have an IRC channel (#tastypie on irc.freenode.net) to get help, bounce an idea by us, or generally shoot the breeze.

Security

Tastypie is committed to providing a flexible and secure API, and was designed with many security features and options in mind. Due to the complex nature of APIs and the constant discovery of new attack vectors and vulnerabilities, no software is immune to security holes. We rely on our community to report and help us investigate security issues.

If you come across a security hole please do not open a Github issue. Instead, drop us an email at tastypie-security@googlegroups.com

We’ll then work together to investigate and resolve the problem so we can announce a solution along with the vulnerability.

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-ng-0.14.9.tar.gz (153.9 kB view details)

Uploaded Source

Built Distribution

django_tastypie_ng-0.14.9-py2.py3-none-any.whl (79.3 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file django-tastypie-ng-0.14.9.tar.gz.

File metadata

  • Download URL: django-tastypie-ng-0.14.9.tar.gz
  • Upload date:
  • Size: 153.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for django-tastypie-ng-0.14.9.tar.gz
Algorithm Hash digest
SHA256 dc5e81401211e762aa744a4cd5d6f4422a620b4f836b64ec00da099c9a4b6db5
MD5 18d6fa7aa58ac193e81fd44c28f65ba0
BLAKE2b-256 a1d474d078d67c186e45b9e6438dfbccf0e6228fe69a9aa52d6d2b3eb959f072

See more details on using hashes here.

File details

Details for the file django_tastypie_ng-0.14.9-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for django_tastypie_ng-0.14.9-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 63886246465fbebf93ae1f3d2193b509429da7ddc2a8ea61de024bc10d097460
MD5 49be0f8e871ab7e8350b6dc995a5c6ac
BLAKE2b-256 dfb2330ab9d3cbbfeced89f6605b02175ebf9c1912d10128cbc6af96c69235fd

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