Skip to main content

A simple REST toolkit for Flask

Project description

This library is a tiny REST toolkit intending to simplify your life when you want to create a REST API for your flask apps.

Install it

Well, that’s really simple, it’s packaged and on PyPI, so:

$ pip install flask-rest

Use it

Handlers

Create your classes with specific methods (namely add, get, delete and update), register it with an url, and you’re good.

Here is a simple example on how to use it:

from flask import Blueprint
from flask_rest import RESTResource, need_auth

# Subclass a RestResource and configure it

api = Blueprint("api", __name__, url_prefix="/api")

# You can define a authenfier if you want to.

class ProjectHandler(object):

    def add(self): #This maps on "post /"
        form = ProjectForm(csrf_enabled=False) # just for the example
        if form.validate():
            project = form.save()
            db.session.add(project)
            db.session.commit()
            return 201, project.id
        return 400, form.errors # returns a status code and the data

    def get(self, project_id): # maps on GET /<id>
        # do your stuff here
        return 200, project

    # you can use the "need_auth" decorator to do things for you
    @need_auth(authentifier_callable, "project") # injects the "project" argument if authorised
    def delete(self, project):
        # do your stuff
        return 200, "DELETED"

Once your handlers defined, you just have to register them with the app or the blueprint:

project_resource = RESTResource(
    name="project", # name of the var to inject to the methods
    route="/projects",  # will be availble at /api/projects/*
    app=api, # the app which should handle this
    actions=["add", "update", "delete", "get"], #authorised actions
    handler=ProjectHandler()) # the handler of the request

If everything should be protected, you can use the authentifier argument:

authentifier=check_project

Where check_project is a callable that returns either the project or False if the acces is not authorized.

Serialisation / Deserialisation

When you are returning python objects, they can be serialized, which could be useful in most of the cases. The only serialisation format supported so far is JSON.

To serialise normal python objects, they should have a _to_serialize attribute, containing all the names of the attributes to serialize. Here is an example:

class Member():

    _to_serialize = ("id", "name", "email")

    def __init__(self, **kwargs):
        for name, value in kwargs.items():
            setattr(self, name, value)

If you want to have a look at a real use for this, please head to https://github.com/spiral-project/ihatemoney/blob/master/budget/api.py

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

Flask-REST-1.3.tar.gz (5.3 kB view details)

Uploaded Source

File details

Details for the file Flask-REST-1.3.tar.gz.

File metadata

  • Download URL: Flask-REST-1.3.tar.gz
  • Upload date:
  • Size: 5.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for Flask-REST-1.3.tar.gz
Algorithm Hash digest
SHA256 561fddf8ae39f6581c4c2421476ae38ca1dd089c6a8f36a3ad40ca0405d6318f
MD5 3b2edf2a0c57fe4e96c2c31198b3c27a
BLAKE2b-256 7388c604c41e4f5350da313948451fdf2d1507c0f43aeb5073302b06ecde2b92

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