Building blocks for REST APIs for Flask
Project description
Flask-RESTy
Flask-RESTy provides building blocks for creating REST APIs with Flask, SQLAlchemy, and marshmallow.
from flask_resty import Api, GenericModelView
from . import app, models, schemas
class WidgetViewBase(GenericModelView):
model = models.Widget
schema = schemas.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)
Documentation
Documentation is available at https://flask-resty.readthedocs.io/.
License
MIT Licensed. See the bundled LICENSE file for more details.
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.23.0.tar.gz
(30.5 kB
view details)
Built Distribution
File details
Details for the file Flask-RESTy-0.23.0.tar.gz
.
File metadata
- Download URL: Flask-RESTy-0.23.0.tar.gz
- Upload date:
- Size: 30.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4f7f9fa7f79b1eeb2c4330b4038c14dfa0a7e1ff98e517dffdf5c1128ca2b52e |
|
MD5 | 6e4f925e32bb7fd799d07f12cab9aae8 |
|
BLAKE2b-256 | d8879daa73e6a00d353866d03b35e6cf54f8793092a6523b50985f9a33173f4f |
File details
Details for the file Flask_RESTy-0.23.0-py2.py3-none-any.whl
.
File metadata
- Download URL: Flask_RESTy-0.23.0-py2.py3-none-any.whl
- Upload date:
- Size: 37.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 316ecbff95cfd02e216054964247e50ab54b3ea3d1e9257e1c3218a7b281e2fc |
|
MD5 | 3e3a32b59087625245deaf6abde55021 |
|
BLAKE2b-256 | a63d3af0bc5aad59bf51a09f5191d76707ff83440a9d24c69ccdad076ce6b9db |