A flexible & capable API layer for Django.
Project description
Creating delicious APIs for Django apps since 2010.
Currently in beta (v0.13.3) but being used actively in production on several sites.
Requirements
Core
Python 2.7+ or Python 3.4+
Django 1.7 through Django 1.9
dateutil (http://labix.org/python-dateutil) >= 2.1
Format Support
XML: lxml 3 (http://lxml.de/) and defusedxml (https://pypi.python.org/pypi/defusedxml)
YAML: pyyaml (http://pyyaml.org/)
binary plist: biplist (http://explorapp.com/biplist/)
Optional
HTTP Digest authentication: python3-digest (https://bitbucket.org/akoha/python-digest/)
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 import url, 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...
url(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
https://github.com/django-tastypie/django-tastypie/tree/master/tests/basic shows basic usage of tastypie
Getting Help
There are two primary ways of getting help.
Go to StackOverflow and post a question with the tastypie tag.
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Hashes for meg_django_tastypie-0.13.3.2-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 34d28c47f142a17f13d718a801c554ecb76cfeebe02e0d7ba749ea492d5e1ff4 |
|
MD5 | 2c55e5a28def5c4bf53af95389b938b1 |
|
BLAKE2b-256 | 7225beddc39b766bf2ab2668f7fe80102f88c394f1281f0fd2c621642b86aaf4 |