Skip to main content

Simplistic RESTful API miniframework.

Project description

https://travis-ci.org/toastdriven/restless.png?branch=master

A lightweight REST miniframework for Python.

Works great with Django & Flask, 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

  • Pagination

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

TODO

For v1.1.0, the following things need completing:

  • Working Flask tests (can’t figure out the globals)

  • Extension documentation

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

restless-1.0.0.tar.gz (238.9 kB view details)

Uploaded Source

Built Distribution

restless-1.0.0-py2.py3-none-any.whl (14.1 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file restless-1.0.0.tar.gz.

File metadata

  • Download URL: restless-1.0.0.tar.gz
  • Upload date:
  • Size: 238.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for restless-1.0.0.tar.gz
Algorithm Hash digest
SHA256 94877a36976304db6a340ae1fbc7b7022a8fd47d729cbaaf9e0612cc16cfed2b
MD5 4d6d7f1419234544084c73d414016e9b
BLAKE2b-256 dc259e72cd1cd73b03b388053fcdbc11e2f68ff6575cf54281ff8faa51770ae1

See more details on using hashes here.

File details

Details for the file restless-1.0.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for restless-1.0.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 b420604f858c1907db88721d73b4c953d45b894725a0638b84e73e7d893e43d8
MD5 8e3d6962826cb2a203aabc1179dcd980
BLAKE2b-256 67c1e3421c59e3cef035d4cff6cec94800e7ec276f00e937483ea49b5f4abef5

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page