django-tastypie

Creating delicious APIs for Django apps since 2010.

  • 所有者: django-tastypie/django-tastypie
  • 平台:
  • 許可證: Other
  • 分類:
  • 主題:
  • 喜歡:
    0
      比較:

Github星跟蹤圖

===============
django-tastypie

.. image:: https://readthedocs.org/projects/django-tastypie/badge/
:target: https://django-tastypie.readthedocs.io/
:alt: Docs

.. image:: https://github.com/django-tastypie/django-tastypie/actions/workflows/python-package.yml/badge.svg
:target: https://github.com/django-tastypie/django-tastypie/actions
:alt: CI

.. image:: https://coveralls.io/repos/django-tastypie/django-tastypie/badge.svg?service=github
:target: https://coveralls.io/github/django-tastypie/django-tastypie
:alt: Code Coverage

.. image:: https://img.shields.io/pypi/v/django-tastypie.svg
:target: https://pypi.python.org/pypi/django-tastypie
:alt: Version

.. image:: https://pypi-badges.global.ssl.fastly.net/svg?package=django-tastypie&timeframe=monthly
:target: https://pypi.python.org/pypi/django-tastypie
:alt: 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 4.2, 3.2 (LTS releases), or Django 4.0, 4.1, and 5.0 (intermediate releases)
  • dateutil (http://labix.org/python-dateutil) >= 2.1

Format Support

Optional

What's It Look Like?

A basic example looks like:

.. code:: python

# 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.

.. _StackOverflow: https://stackoverflow.com/questions/tagged/tastypie
.. _#tastypie on irc.freenode.net: irc://irc.freenode.net/tastypie

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.

主要指標

概覽
名稱與所有者django-tastypie/django-tastypie
主編程語言Python
編程語言Python (語言數: 3)
平台
許可證Other
所有者活动
創建於2010-03-29 06:01:45
推送於2025-04-02 19:23:43
最后一次提交2025-04-02 12:22:48
發布數34
最新版本名稱v0.15.1 (發布於 )
第一版名稱v0.8.1 (發布於 )
用户参与
星數3.9k
關注者數125
派生數1.2k
提交數1.3k
已啟用問題?
問題數836
打開的問題數309
拉請求數233
打開的拉請求數95
關閉的拉請求數523
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?