mikeywaites / flask-arrested

Flask-Arrested: A Framework For Rapidly Building REST APIs with Flask.

Home Page:https://arrested.readthedocs.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Flask-Arrested: A Framework For Rapidly Building REST APIs with Flask.

https://circleci.com/gh/mikeywaites/flask-arrested/tree/master.svg?style=svg https://coveralls.io/repos/github/mikeywaites/flask-arrested/badge.svg?branch=master https://badges.gitter.im/bruv-io/Arrested.png

Introducing Arrested

Take the pain out of REST API creation with Arrested - batteries included for quick wins, highly extensible for specialist requirements.

from arrested import ArrestedAPI, Resource, Endpoint, GetListMixin, CreateMixin,
from example.models import db, Character

api_v1 = ArrestedAPI(url_prefix='/v1')

characters_resource = Resource('characters', __name__, url_prefix='/characters')


class CharactersIndexEndpoint(Endpoint, GetListMixin, CreateMixin):

    name = 'list'
    many = True

    def get_objects(self):

        characters = db.session.query(Character).all()
        return characters

    def save_object(self, obj):

        character = Character(**obj)
        db.session.add(character)
        db.session.commit()
        return character


characters_resource.add_endpoint(CharactersIndexEndpoint)
api_v1.register_resource(characters_resource)

Flask-Arrested Features

Arrested is a framework for rapidly building REST API's with Flask.

  • Un-Opinionated: Let's you decide "the best way" to implement your REST API.
  • Battle Tested: In use across many services in a production environment.
  • Batteries Included! Arrested ships with built in support for popular libraries such as SQLAlchemy, Kim and Marshmallow. Using something different or have your own tooling you need to support? Arrested provides a rich API that can be easily customised!
  • Supports any storage backends: Want to use "hot new database technology X?" No problem! Arrested can be easily extended to handle all your data needs.
  • Powerful middleware system - Inject logic at any step of the request/response cycle

🚀 Get started in under a minute..

Use the Flask-Arrested cookie cutter to create a basic API to get you started in 4 simple commands. https://github.com/mikeywaites/arrested-cookiecutter.

$ cookiecutter gh:mikeywaites/arrested-cookiecutter
$ cd arrested-users-api
$ docker-compose up -d api
$ curl -u admin:secret localhost:8080/v1/users | python -m json.tool

The User Guide

Get started with Flask-Arrested using the quickstart user guide or take a look at the in-depth API documentation.

https://arrested.readthedocs.org.

About

Flask-Arrested: A Framework For Rapidly Building REST APIs with Flask.

https://arrested.readthedocs.org

License:MIT License


Languages

Language:Python 97.9%Language:Gherkin 1.9%Language:Shell 0.2%