1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
========
restless
========
A lightweight REST miniframework for Python.
Works great with Django_, Flask_, Pyramid_, Tornado_ & Itty_, but should be useful for
many other Python web frameworks. Based on the lessons learned from Tastypie_
& other REST libraries.
.. _Django: http://djangoproject.com/
.. _Flask: http://flask.pocoo.org/
.. _Pyramid: http://www.pylonsproject.org/
.. _Itty: https://pypi.python.org/pypi/itty
.. _Tastypie: http://tastypieapi.org/
.. _Tornado: http://www.tornadoweb.org/
Features
========
* Small, fast codebase
* JSON output by default, but overridable
* RESTful
* Python 3.3+ (with shims to make broke-ass Python 2.6+ work)
* Flexible
Anti-Features
=============
(Things that will never be added...)
* Automatic ORM integration
* Authorization (per-object or not)
* Extensive filtering options
* XML output (though you can implement your own)
* Metaclasses
* Mixins
* HATEOAS
Topics
======
.. toctree::
:maxdepth: 2
tutorial
philosophy
extending
.. toctree::
:maxdepth: 1
cookbook
contributing
security
API Reference
=============
.. toctree::
:glob:
reference/*
Release Notes
=============
.. toctree::
:maxdepth: 1
releasenotes/v2.0.1
releasenotes/v2.0.0
releasenotes/v1.4.0
releasenotes/v1.3.0
releasenotes/v1.2.0
releasenotes/v1.1.0
releasenotes/v1.0.0
Indices and tables
==================
* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`
|