Simplistic RESTful API miniframework.
Project description
A lightweight REST miniframework for Python.
Documentation is at http://restless.readthedocs.org/.
Works great with Django, Flask & Pyramid, but should be useful for many other Python web frameworks. Based on the lessons learned from Tastypie & other REST libraries.
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
Why?
Quite simply, I care about creating flexible & RESTFul APIs. In building Tastypie, I tried to create something extremely complete & comprehensive. The result was writing a lot of hook methods (for easy extensibility) & a lot of (perceived) bloat, as I tried to accommodate for everything people might want/need in a flexible/overridable manner.
But in reality, all I really ever personally want are the RESTful verbs, JSON serialization & the ability of override behavior.
This one is written for me, but maybe it’s useful to you.
Manifesto
Rather than try to build something that automatically does the typically correct thing within each of the views, it’s up to you to implement the bodies of various HTTP methods.
Example code:
# posts/api.py from django.contrib.auth.models import User from restless.dj import DjangoResource from posts.models import Post class PostResource(DjangoResource): # Controls what data is included in the serialized output. fields = { 'id': 'id', 'title': 'title', 'author': 'user.username', 'body': 'content', 'posted_on': 'posted_on', } # GET / def list(self): return Post.objects.all() # GET /pk/ def detail(self, pk): return Post.objects.get(id=pk) # POST / def create(self): return Post.objects.create( title=self.data['title'], user=User.objects.get(username=self.data['author']), content=self.data['body'] ) # PUT /pk/ def update(self, pk): try: post = Post.objects.get(id=pk) except Post.DoesNotExist: post = Post() post.title = self.data['title'] post.user = User.objects.get(username=self.data['author']) post.content = self.data['body'] post.save() return post # DELETE /pk/ def delete(self, pk): Post.objects.get(id=pk).delete()
Hooking it up:
# api/urls.py from django.conf.urls.default import url, patterns, include from posts.api import PostResource urlpatterns = patterns('', # The usual suspects, then... url(r'^api/posts/', include(PostResource.urls())), )
Licence
BSD
Running the Tests
Getting the tests running looks like:
$ virtualenv -p python3 env3 $ . env3/bin/activate $ pip install -r test_requirements.txt $ export PYTHONPATH=`pwd` $ nosetests -s -v --with-coverage --cover-package=restless --cover-html tests
For Python 2:
$ virtualenv env2 $ . env2/bin/activate $ pip install -r test_requirements.txt $ export PYTHONPATH=`pwd` $ nosetests -s -v --with-coverage --cover-package=restless --cover-html tests
Coverage is at about 94%, so please don’t make it worse. :D
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 Distribution
Built Distribution
File details
Details for the file restless-1.1.0.tar.gz
.
File metadata
- Download URL: restless-1.1.0.tar.gz
- Upload date:
- Size: 269.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9926dc83b68dc75c007c2d9d8c8bf8e01fb02fd1caff5883b499fbf0e21319a7 |
|
MD5 | efd3c65a453e5b53806af2ace8740816 |
|
BLAKE2b-256 | 408295e2403199efd0c5671e524980ebbfe17041f4ede17318c8aa37e6561d18 |
File details
Details for the file restless-1.1.0-py2.py3-none-any.whl
.
File metadata
- Download URL: restless-1.1.0-py2.py3-none-any.whl
- Upload date:
- Size: 14.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 930eaf043c89bb0a69d3dbcb4f54b4a1a5845705983a14903d62f2519e29d312 |
|
MD5 | 52aa711433b84f984a8cb2b40fa7e35f |
|
BLAKE2b-256 | bd23debd401c32104cd3aedf2335bc27c5eedb610b76af34e7d6fe293c24844a |