Building blocks for REST APIs for Flask
Project description
Building blocks for REST APIs for Flask.
Usage
Create a SQLAlchemy model and a marshmallow schema, then:
from flask_resty import Api, GenericModelView
from . import app, models, schemas
class WidgetViewBase(GenericModelView):
model = models.Widget
schema = models.WidgetSchema()
class WidgetListView(WidgetViewBase):
def get(self):
return self.list()
def post(self):
return self.create()
class WidgetView(WidgetViewBase):
def get(self, id):
return self.retrieve(id)
def patch(self, id):
return self.update(id, partial=True)
def delete(self, id):
return self.destroy(id)
api = Api(app, '/api')
api.add_resource('/widgets', WidgetListView, WidgetView)
By default, models are expected to have been created using Flask-SQLAlchemy.
from flask_sqlalchemy import SQLAlchemy
from sqlalchemy import Column, String
from . import app
db = SQLAlchemy(app)
class Widget(db.Model):
id = Column(String, primary_key=True)
name = Column(String, nullable=False)
color = Column(String, nullable=False)
Schemas can be standard marshmallow Schema instances or marshmallow-sqlalchemy TableSchema instances. They should not be ModelSchema instances.
from marshmallow_sqlalchemy import TableSchema
from . import models
class WidgetSchema(TableSchema):
class Meta:
table = models.Widget.__table__
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
Flask-RESTy-0.20.8.tar.gz
(19.3 kB
view details)
Built Distribution
File details
Details for the file Flask-RESTy-0.20.8.tar.gz
.
File metadata
- Download URL: Flask-RESTy-0.20.8.tar.gz
- Upload date:
- Size: 19.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5243909e7caca38b0e9a5c570121a0189bd6b1e9e8e5bdf4d0e623edb1227d1c |
|
MD5 | af6d4d59f91ed6f7c24419e396bdf946 |
|
BLAKE2b-256 | 699107205f87a1d87c11797e2b500c1ae6b344fda72a3e1731caf5f06531b750 |
File details
Details for the file Flask_RESTy-0.20.8-py2.py3-none-any.whl
.
File metadata
- Download URL: Flask_RESTy-0.20.8-py2.py3-none-any.whl
- Upload date:
- Size: 26.7 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 65dbd3e051448e40948701e60c5eaccc67d004c0440dd4db3a510dc2337e05a0 |
|
MD5 | cce7b91538f0fbef04a646d36753125b |
|
BLAKE2b-256 | 34e4cd50f5cfcaa2cb9a8b2b7a80ba19eafc7363473c36952bd0c46aa708f868 |