{ "info": { "author": "Daniel Lindsley", "author_email": "daniel@toastdriven.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 3", "Topic :: Utilities" ], "description": "===============\ndjango-tastypie\n===============\n\n.. image:: https://readthedocs.org/projects/django-tastypie/badge/\n :target: https://django-tastypie.readthedocs.io/\n :alt: Docs\n\n.. image:: https://travis-ci.org/django-tastypie/django-tastypie.svg\n :target: https://travis-ci.org/django-tastypie/django-tastypie\n :alt: CI\n\n.. image:: https://coveralls.io/repos/django-tastypie/django-tastypie/badge.svg?service=github\n :target: https://coveralls.io/github/django-tastypie/django-tastypie\n :alt: Code Coverage\n\n.. image:: https://img.shields.io/pypi/v/django-tastypie.svg\n :target: https://pypi.python.org/pypi/django-tastypie\n :alt: Version\n\n.. image:: https://pypi-badges.global.ssl.fastly.net/svg?package=django-tastypie&timeframe=monthly\n :target: https://pypi.python.org/pypi/django-tastypie\n :alt: Downloads\n\nCreating delicious APIs for Django apps since 2010.\n\nCurrently in beta (v0.14.2) but being used actively in production on several\nsites.\n\n\nRequirements\n============\n\nCore\n----\n\n* Python 2.7+ or Python 3.4+\n* Django - 1.11 (LTS), 2.0 (LTS) or 2.1 - the last two LTS and the last incremental release are supported.\n* dateutil (http://labix.org/python-dateutil) >= 2.1\n\nFormat Support\n--------------\n\n* XML: lxml 3 (http://lxml.de/) and defusedxml (https://pypi.python.org/pypi/defusedxml)\n* YAML: pyyaml (http://pyyaml.org/)\n* binary plist: biplist (https://bitbucket.org/wooster/biplist)\n\nOptional\n--------\n\n* HTTP Digest authentication: python3-digest (https://bitbucket.org/akoha/python-digest/)\n\n\nWhat's It Look Like?\n====================\n\nA basic example looks like:\n\n.. code:: python\n\n # myapp/api.py\n # ============\n from tastypie.resources import ModelResource\n from myapp.models import Entry\n\n\n class EntryResource(ModelResource):\n class Meta:\n queryset = Entry.objects.all()\n\n\n # urls.py\n # =======\n from django.conf.urls import url, include\n from tastypie.api import Api\n from myapp.api import EntryResource\n\n v1_api = Api(api_name='v1')\n v1_api.register(EntryResource())\n\n urlpatterns = [\n # The normal jazz here then...\n url(r'^api/', include(v1_api.urls)),\n ]\n\nThat gets you a fully working, read-write API for the ``Entry`` model that\nsupports all CRUD operations in a RESTful way. JSON/XML/YAML support is already\nthere, and it's easy to add related data/authentication/caching.\n\nYou can find more in the documentation at\nhttps://django-tastypie.readthedocs.io/.\n\n\nWhy Tastypie?\n=============\n\nThere are other API frameworks out there for Django. You need to\nassess the options available and decide for yourself. That said, here are some\ncommon reasons for tastypie.\n\n* You need an API that is RESTful and uses HTTP well.\n* You want to support deep relations.\n* You DON'T want to have to write your own serializer to make the output right.\n* You want an API framework that has little magic, very flexible and maps well to\n the problem domain.\n* You want/need XML serialization that is treated equally to JSON (and YAML is\n there too).\n\n\nReference Material\n==================\n\n* https://django-tastypie.readthedocs.io/en/latest/\n* https://github.com/django-tastypie/django-tastypie/tree/master/tests/basic shows\n basic usage of tastypie\n* http://en.wikipedia.org/wiki/REST\n* http://en.wikipedia.org/wiki/List_of_HTTP_status_codes\n* http://www.ietf.org/rfc/rfc2616.txt\n* http://jacobian.org/writing/rest-worst-practices/\n\n\nGetting Help\n============\n\nThere are two primary ways of getting help.\n\n1. Go to `StackOverflow`_ and post a question with the ``tastypie`` tag.\n2. We have an IRC channel (`#tastypie on irc.freenode.net`_) to get help,\n bounce an idea by us, or generally shoot the breeze.\n\n.. _`StackOverflow`: https://stackoverflow.com/questions/tagged/tastypie\n.. _#tastypie on irc.freenode.net: irc://irc.freenode.net/tastypie\n\n\nSecurity\n========\n\nTastypie is committed to providing a flexible and secure API, and was designed\nwith many security features and options in mind. Due to the complex nature of\nAPIs and the constant discovery of new attack vectors and vulnerabilities,\nno software is immune to security holes. We rely on our community to report\nand help us investigate security issues.\n\nIf you come across a security hole **please do not open a Github issue**.\nInstead, **drop us an email** at ``tastypie-security@googlegroups.com``\n\nWe'll then work together to investigate and resolve the problem so we can\nannounce a solution along with the vulnerability.", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/django-tastypie/django-tastypie", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "django-tastypie", "package_url": "https://pypi.org/project/django-tastypie/", "platform": "", "project_url": "https://pypi.org/project/django-tastypie/", "project_urls": { "Homepage": "https://github.com/django-tastypie/django-tastypie" }, "release_url": "https://pypi.org/project/django-tastypie/0.14.2/", "requires_dist": null, "requires_python": "", "summary": "A flexible & capable API layer for Django.", "version": "0.14.2" }, "last_serial": 4237986, "releases": { "0.10.0": [ { "comment_text": "", "digests": { "md5": "03009279f547483085f58057d5052a65", "sha256": "1db393b38f9b953ef75fbcf2e2851a403c5d1be598fb297dc8b1121fc788e49a" }, "downloads": -1, "filename": "django-tastypie-0.10.0.tar.gz", "has_sig": false, "md5_digest": "03009279f547483085f58057d5052a65", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 721130, "upload_time": "2013-08-03T19:48:31", "url": "https://files.pythonhosted.org/packages/e4/f0/c9cdaa2c8e188f30d544aaa83c6c82de112f1130f2783c4b99b7ff17da9d/django-tastypie-0.10.0.tar.gz" } ], "0.11.0": [ { "comment_text": "", "digests": { "md5": "8dc0225a6a040f1afef00d6926ba97c0", "sha256": "a41f7adeecb9f08ad4258d120c14343c1c8f1eec63be0c62fef7fc43decc2862" }, "downloads": -1, "filename": "django_tastypie-0.11.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8dc0225a6a040f1afef00d6926ba97c0", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 74181, "upload_time": "2013-12-03T09:19:39", "url": "https://files.pythonhosted.org/packages/6e/9b/bd254c68412aa18f0b4100119a6fadcc97ab6c6b838f05a19dd50dbf35a3/django_tastypie-0.11.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fc0d0f3e49f591ee8b9557261866eff1", "sha256": "84b6bb8e3f9fff5740256c229255c5d35f8d48adcaba3c8bcd63179d6ab75706" }, "downloads": -1, "filename": "django-tastypie-0.11.0.tar.gz", "has_sig": false, "md5_digest": "fc0d0f3e49f591ee8b9557261866eff1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 727362, "upload_time": "2013-12-03T09:19:25", "url": "https://files.pythonhosted.org/packages/b8/21/1e5b8438d97d09400a6f7c7e831d2b02d390bf415d080a359904b09878e9/django-tastypie-0.11.0.tar.gz" } ], "0.11.1": [ { "comment_text": "", "digests": { "md5": "4659217fac3d2bd802f65ee0e459fb32", "sha256": "3d4bf8c99daf108d376e8328d3a25fdbc96182dd775cab4b7eb42b4f98f4a954" }, "downloads": -1, "filename": "django_tastypie-0.11.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4659217fac3d2bd802f65ee0e459fb32", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 74525, "upload_time": "2014-05-22T16:10:50", "url": "https://files.pythonhosted.org/packages/30/84/e1a52467f8dbb8075502cf557c3df5f5516d4eaa3eb72f5f1685ab3ea329/django_tastypie-0.11.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c86d3c59b81e3e3a7053eedb391ba6c9", "sha256": "32c2b55268f951a627974a907f0684b1ad4e7f0720030ede8c41134e66e210a4" }, "downloads": -1, "filename": "django-tastypie-0.11.1.tar.gz", "has_sig": false, "md5_digest": "c86d3c59b81e3e3a7053eedb391ba6c9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 729351, "upload_time": "2014-05-22T16:10:41", "url": "https://files.pythonhosted.org/packages/06/8f/1a8f025c84bf3ba0c2ffe6e3521cf31d1adbf00308204907d303e40b40ff/django-tastypie-0.11.1.tar.gz" } ], "0.12.0": [ { "comment_text": "", "digests": { "md5": "26f750a34716a957765405f22b8b91be", "sha256": "a223fe0ac7205a3f8f7a7b177bcc7114ae1fe91564237fcd5b25e70ddcb51d80" }, "downloads": -1, "filename": "django_tastypie-0.12.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "26f750a34716a957765405f22b8b91be", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 76626, "upload_time": "2014-09-12T01:21:07", "url": "https://files.pythonhosted.org/packages/b1/90/29755670216647bf0e0442013e7b1b5d31d44aadc2b58608296376efe190/django_tastypie-0.12.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4dd8646d2ead72902f70ccb043a1b675", "sha256": "65fa68c803ca384fa9f7fd6f61c0636ea759d685b9872a556e6295ee4daf8395" }, "downloads": -1, "filename": "django-tastypie-0.12.0.tar.gz", "has_sig": false, "md5_digest": "4dd8646d2ead72902f70ccb043a1b675", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 730294, "upload_time": "2014-09-12T01:20:52", "url": "https://files.pythonhosted.org/packages/56/8a/fe9b5ede7989c4208e77211d2a6885134803793616650494cfb7481da6c4/django-tastypie-0.12.0.tar.gz" } ], "0.12.1": [ { "comment_text": "", "digests": { "md5": "eb0142e43dd7f340c9b8b6da71f551fb", "sha256": "0b586b2932a6893f6754599062657a3569ef61bb62da90777682d8f534c8ecb6" }, "downloads": -1, "filename": "django_tastypie-0.12.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "eb0142e43dd7f340c9b8b6da71f551fb", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 75477, "upload_time": "2014-10-23T00:30:52", "url": "https://files.pythonhosted.org/packages/67/f1/09682957dbc26ccd4de0248301adeeae733612af27710e484eef18b70848/django_tastypie-0.12.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fbe635644c3551fbe66dd50e7e115537", "sha256": "ad5bd68b472f937bc55c7ff0805b8ea1546dcf14b0b6c9024c3ec60b0f3d776a" }, "downloads": -1, "filename": "django-tastypie-0.12.1.tar.gz", "has_sig": false, "md5_digest": "fbe635644c3551fbe66dd50e7e115537", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 730543, "upload_time": "2014-10-23T00:31:19", "url": "https://files.pythonhosted.org/packages/bb/ed/6d6b188c28dbdb7756ddf7fba3e94d40b4b78342fc36e671d87a001bde85/django-tastypie-0.12.1.tar.gz" } ], "0.12.2": [ { "comment_text": "", "digests": { "md5": "9781fe3c7fe885e80c20682605a1a6ef", "sha256": "7feccf811a8c2c60bc227e0d956015f0ea6097c804660e8f4a4ada0e74817c24" }, "downloads": -1, "filename": "django_tastypie-0.12.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9781fe3c7fe885e80c20682605a1a6ef", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 76017, "upload_time": "2015-07-16T22:50:44", "url": "https://files.pythonhosted.org/packages/7e/b8/7410ae424b85d7a8d1a61df6f928561f64b0b309726865db0408530757bd/django_tastypie-0.12.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "834236dba140c19ae026d6d5873ea5c0", "sha256": "21625ce191ccb734f47b90ef92b603d04366bb67d0eb52bd060a8d76e6706018" }, "downloads": -1, "filename": "django-tastypie-0.12.2.tar.gz", "has_sig": false, "md5_digest": "834236dba140c19ae026d6d5873ea5c0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 137542, "upload_time": "2015-07-16T22:50:40", "url": "https://files.pythonhosted.org/packages/5b/22/87ed434a61df5fb0b156d417d6c0f00241e3c2c7d8b7bf8bbc1a9e452e73/django-tastypie-0.12.2.tar.gz" } ], "0.13.0": [ { "comment_text": "", "digests": { "md5": "1d48a12c7add2acafa978de98a34db76", "sha256": "e8974b1586a107f97101b0cff4c144229377270c15f357ceeaedeb9a9255f95a" }, "downloads": -1, "filename": "django_tastypie-0.13.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1d48a12c7add2acafa978de98a34db76", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 74535, "upload_time": "2016-01-12T21:36:24", "url": "https://files.pythonhosted.org/packages/dd/2a/a5058fccd12e9b7d119aaeb3541c6a8fc7ec089ad305c7bf7f3f4d2968b3/django_tastypie-0.13.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "74929d88ae9ae127a41bb893ede2569c", "sha256": "853a08a7852439e94468147591d556a3d9de9a6ce273d87736ef8dd1c23c3c20" }, "downloads": -1, "filename": "django-tastypie-0.13.0.tar.gz", "has_sig": false, "md5_digest": "74929d88ae9ae127a41bb893ede2569c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 140624, "upload_time": "2016-01-17T01:12:40", "url": "https://files.pythonhosted.org/packages/f3/18/e60a5708492ec85d1ee06485efdf8ce7860e208230e17bdb9bac5de7eddd/django-tastypie-0.13.0.tar.gz" } ], "0.13.1": [ { "comment_text": "", "digests": { "md5": "b7e2746917caedb047bc4367c6f045d9", "sha256": "bcae0ca9f2de2991564e8e563ecf68b10888d85b5bee43a9809cb20889b67728" }, "downloads": -1, "filename": "django_tastypie-0.13.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b7e2746917caedb047bc4367c6f045d9", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 75450, "upload_time": "2016-01-25T23:22:36", "url": "https://files.pythonhosted.org/packages/a1/06/f895197c0d135e94d27ba7f1e147ff91cce42c592ddf8261e6c61b69d1d6/django_tastypie-0.13.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3c43737a68af8368269f78e8e04a3aeb", "sha256": "c27f21dcf7cbc2e533a1a0c43451df0bb005a263d9fa82b9b07483d547170213" }, "downloads": -1, "filename": "django-tastypie-0.13.1.tar.gz", "has_sig": false, "md5_digest": "3c43737a68af8368269f78e8e04a3aeb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 143715, "upload_time": "2016-01-25T23:22:14", "url": "https://files.pythonhosted.org/packages/6e/ea/b48fe0527ddb32b0a1484178fe79539957c1275bb40ef14768ad6c93662c/django-tastypie-0.13.1.tar.gz" } ], "0.13.2": [ { "comment_text": "", "digests": { "md5": "f9aeb12aa83290c0435a0ba7df85658c", "sha256": "730f8ab51efe419775f9a8f2ff22b195b938841e011f2d75029db73cbedb11ee" }, "downloads": -1, "filename": "django_tastypie-0.13.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f9aeb12aa83290c0435a0ba7df85658c", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 75320, "upload_time": "2016-02-15T05:50:52", "url": "https://files.pythonhosted.org/packages/9e/61/d3484254757eccb3d236f21579c8696db45b96f981e77cba6b26817ca1f8/django_tastypie-0.13.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e7e07049d89129a85c6a0ac2066a00fc", "sha256": "341477f099904a0f45c0539b05fcc2cf1189abbc64b153598a15a55983a96325" }, "downloads": -1, "filename": "django-tastypie-0.13.2.tar.gz", "has_sig": false, "md5_digest": "e7e07049d89129a85c6a0ac2066a00fc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 144434, "upload_time": "2016-02-15T05:50:59", "url": "https://files.pythonhosted.org/packages/d8/48/4eb445bea9cd4a0e11ece22ad0b63e38280261757342d6697ae79e466513/django-tastypie-0.13.2.tar.gz" } ], "0.13.3": [ { "comment_text": "", "digests": { "md5": "3d8f6b5193e7526465921d5b04bb2522", "sha256": "bd4eb8a9da6c2dd70c946edc460776a64f40fae01132520a26133361bd43bf3f" }, "downloads": -1, "filename": "django_tastypie-0.13.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3d8f6b5193e7526465921d5b04bb2522", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 75438, "upload_time": "2016-02-17T13:12:49", "url": "https://files.pythonhosted.org/packages/aa/53/4ab68f782ae6803c0f1d2b40989076f653597f32d9c468343fea88a5cf98/django_tastypie-0.13.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2defbaba9cdce75eb23d5d50b62dc441", "sha256": "e404b9ac24ab400015047f5503fae1732d9e944a7152693fe902c0a905f250cc" }, "downloads": -1, "filename": "django-tastypie-0.13.3.tar.gz", "has_sig": false, "md5_digest": "2defbaba9cdce75eb23d5d50b62dc441", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 144649, "upload_time": "2016-02-17T13:12:56", "url": "https://files.pythonhosted.org/packages/bf/a8/8a803ba30bb9d1532b74cc2ae561bafd0fcc799236a4bdc7c637a0a27156/django-tastypie-0.13.3.tar.gz" } ], "0.14.0": [ { "comment_text": "", "digests": { "md5": "752a840304144625782fe786ddda3432", "sha256": "5015f40e2d37090c25efdab4fe1b46ec9a1749e8bb159f472346dc48747233cc" }, "downloads": -1, "filename": "django_tastypie-0.14.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "752a840304144625782fe786ddda3432", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 76271, "upload_time": "2017-07-03T14:39:56", "url": "https://files.pythonhosted.org/packages/1e/26/062de36cdd35441546a5788aa8381128d73e400f9ee2670f174c1eb16f4b/django_tastypie-0.14.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7841aa030748e7c58ab839e7d0bf47c1", "sha256": "22f8cf7232ebf60974db545e1350ba62b166c001e35f9ac3234cf9505b44da40" }, "downloads": -1, "filename": "django-tastypie-0.14.0.tar.gz", "has_sig": false, "md5_digest": "7841aa030748e7c58ab839e7d0bf47c1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 146267, "upload_time": "2017-07-03T14:39:57", "url": "https://files.pythonhosted.org/packages/0b/55/08288489582e514ef4606dd5dac43ccfc258ec36f8e58af68d68383b3e85/django-tastypie-0.14.0.tar.gz" } ], "0.14.1": [ { "comment_text": "", "digests": { "md5": "02373786a2bfa32fc1d765b551a59630", "sha256": "1fbf61ec7467eec70bd1abcb14e3b1dc67e47cc3642ad16ed8a3709f4140678b" }, "downloads": -1, "filename": "django-tastypie-0.14.1.tar.gz", "has_sig": false, "md5_digest": "02373786a2bfa32fc1d765b551a59630", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 147790, "upload_time": "2018-04-09T15:15:17", "url": "https://files.pythonhosted.org/packages/a8/8e/3379f905358b08edcfbb628fdc8a4fc659ac1a352cf8408b92f5b129610a/django-tastypie-0.14.1.tar.gz" } ], "0.14.2": [ { "comment_text": "", "digests": { "md5": "e15f7edee34ee1ada15ea1ee9171cf2f", "sha256": "a3a2413510009649e0eac885ead96891c783ced788fd94231dc2f72b7a1b4c04" }, "downloads": -1, "filename": "django-tastypie-0.14.2.tar.gz", "has_sig": false, "md5_digest": "e15f7edee34ee1ada15ea1ee9171cf2f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 146055, "upload_time": "2018-09-04T14:56:31", "url": "https://files.pythonhosted.org/packages/92/46/3a166f9d4fab4baf0d919755cc7223d02a48b0d4e159c89050aa1f61cd1f/django-tastypie-0.14.2.tar.gz" } ], "0.9.10": [ { "comment_text": "", "digests": { "md5": "168910ecdf35eb2bc51d8bdb41b60c1d", "sha256": "e72497c3e5af3be15551c6085a70978aae424d49caa83053ff94361bbf17f990" }, "downloads": -1, "filename": "django-tastypie-0.9.10.tar.gz", "has_sig": false, "md5_digest": "168910ecdf35eb2bc51d8bdb41b60c1d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36343, "upload_time": "2011-11-01T17:22:48", "url": "https://files.pythonhosted.org/packages/d1/0d/85e90924fd710cb138f3745da700266131bf75aca44acc4463710bf8a61e/django-tastypie-0.9.10.tar.gz" } ], "0.9.11": [ { "comment_text": "", "digests": { "md5": "711b29265917405c226f4594782e7e9b", "sha256": "6425f065aae6a6a3aecf6c83ed728efbd1f490ce32aabd16ddcdfb5826c74214" }, "downloads": -1, "filename": "django-tastypie-0.9.11.tar.gz", "has_sig": false, "md5_digest": "711b29265917405c226f4594782e7e9b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 519484, "upload_time": "2011-12-09T10:34:20", "url": "https://files.pythonhosted.org/packages/91/d1/2768dc01d80cde52d18db257a71a511a1e99d7665896adfc7948c93f57b8/django-tastypie-0.9.11.tar.gz" } ], "0.9.12": [ { "comment_text": "", "digests": { "md5": "7359f16d79b76865293184fd1d6773b7", "sha256": "5b9a8d2e1ec562b23f4c94cfe387262f4c573dfdf673af80f13b1d137dbf841f" }, "downloads": -1, "filename": "django-tastypie-0.9.12.tar.gz", "has_sig": false, "md5_digest": "7359f16d79b76865293184fd1d6773b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 704067, "upload_time": "2013-02-14T09:10:30", "url": "https://files.pythonhosted.org/packages/cd/1e/9ceb1e75c5204b35ab7c5bbd240eaa7eb3b672e923431eb1a9e9d37b8f65/django-tastypie-0.9.12.tar.gz" } ], "0.9.13": [ { "comment_text": "", "digests": { "md5": "7c0a07ccd34c4a0e46609db9c90f076f", "sha256": "60ff6e88a8cf7a48b3ac9d23bb3307135bf153026beb6b9adbfac1bb586f516b" }, "downloads": -1, "filename": "django-tastypie-0.9.13.tar.gz", "has_sig": false, "md5_digest": "7c0a07ccd34c4a0e46609db9c90f076f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 719070, "upload_time": "2013-03-19T00:17:50", "url": "https://files.pythonhosted.org/packages/b3/b2/8415d678042a364b73cefaacc2f22656a31e1a3b32dfd6703d8d83b41df9/django-tastypie-0.9.13.tar.gz" } ], "0.9.14": [ { "comment_text": "", "digests": { "md5": "a056fb330a1d2c3df062ab3641e26357", "sha256": "b7c536df7415d6b2024a6bb8efb596733b09763c4762f72e4acbd3a52910f682" }, "downloads": -1, "filename": "django-tastypie-0.9.14.tar.gz", "has_sig": false, "md5_digest": "a056fb330a1d2c3df062ab3641e26357", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 718897, "upload_time": "2013-03-19T16:33:09", "url": "https://files.pythonhosted.org/packages/aa/98/d60653c2e19bb87bcb4d44f937acc9f91513f8f5e0568820fa5aae7cd1f3/django-tastypie-0.9.14.tar.gz" } ], "0.9.15": [ { "comment_text": "", "digests": { "md5": "7a887d7a4ea91a821bd76e5664f5dca1", "sha256": "a0ac317e6b97ca152718a847729c3867a674397e5c3c335f6eed3696c8a1b016" }, "downloads": -1, "filename": "django-tastypie-0.9.15.tar.gz", "has_sig": false, "md5_digest": "7a887d7a4ea91a821bd76e5664f5dca1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 722222, "upload_time": "2013-05-03T02:37:40", "url": "https://files.pythonhosted.org/packages/7c/aa/520f14753a16f2ac7802b4dabd5ffdb5f903fecd68308cda0713acc2f3e8/django-tastypie-0.9.15.tar.gz" } ], "0.9.16": [ { "comment_text": "", "digests": { "md5": "1bc56a3e7f86968d07ec1a096f13b1a6", "sha256": "897f013c7128b15aa511bb1fe44f92c52ddbf6ef1ae842311815fa244786fec0" }, "downloads": -1, "filename": "django-tastypie-0.9.16.tar.gz", "has_sig": false, "md5_digest": "1bc56a3e7f86968d07ec1a096f13b1a6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 720678, "upload_time": "2013-08-03T18:20:27", "url": "https://files.pythonhosted.org/packages/01/41/240b51ed9fc603f060380a2dc74d94a0eb64b7d9db793cc5d90bce19c1d4/django-tastypie-0.9.16.tar.gz" } ], "0.9.6": [ { "comment_text": "", "digests": { "md5": "2793d4282e23630fc0073d5e8e4a377a", "sha256": "14ebed0175973740654fc81968469470e3be7b4c1c178c9cf252e646f4d7bc25" }, "downloads": -1, "filename": "django-tastypie-0.9.6.tar.gz", "has_sig": false, "md5_digest": "2793d4282e23630fc0073d5e8e4a377a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34301, "upload_time": "2011-02-19T21:35:27", "url": "https://files.pythonhosted.org/packages/86/3b/ef4a7658403e81dad9e96eec40230be5577ed2bf92ef6f2fd8063629b512/django-tastypie-0.9.6.tar.gz" } ], "0.9.7": [ { "comment_text": "", "digests": { "md5": "6f80f1e7e57fdc88768e329b445eba19", "sha256": "1b2aded7f96e2c9a889feb6a0197f63af5e55d52c10b3ee879ef7c6302d33800" }, "downloads": -1, "filename": "django-tastypie-0.9.7.tar.gz", "has_sig": false, "md5_digest": "6f80f1e7e57fdc88768e329b445eba19", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34686, "upload_time": "2011-03-09T09:18:27", "url": "https://files.pythonhosted.org/packages/88/cc/41ce127fa9601c932ea6bcee01fcb8b4fc9b742ee7ee4a64770d9adff8c3/django-tastypie-0.9.7.tar.gz" } ], "0.9.9": [ { "comment_text": "", "digests": { "md5": "20b1a6a8bf020d7311d3ff42aaf97a6c", "sha256": "c72ac7eea348b0be9c4cf517312be4904f68706fa021148d858f44b5e44e64d9" }, "downloads": -1, "filename": "django-tastypie-0.9.9.tar.gz", "has_sig": false, "md5_digest": "20b1a6a8bf020d7311d3ff42aaf97a6c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36331, "upload_time": "2011-05-21T03:10:39", "url": "https://files.pythonhosted.org/packages/bb/da/c24c7520dac9da4f8abc2a70820990360b842d0c58c1903cf8abf12fb93a/django-tastypie-0.9.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "e15f7edee34ee1ada15ea1ee9171cf2f", "sha256": "a3a2413510009649e0eac885ead96891c783ced788fd94231dc2f72b7a1b4c04" }, "downloads": -1, "filename": "django-tastypie-0.14.2.tar.gz", "has_sig": false, "md5_digest": "e15f7edee34ee1ada15ea1ee9171cf2f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 146055, "upload_time": "2018-09-04T14:56:31", "url": "https://files.pythonhosted.org/packages/92/46/3a166f9d4fab4baf0d919755cc7223d02a48b0d4e159c89050aa1f61cd1f/django-tastypie-0.14.2.tar.gz" } ] }