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-1.12.0.tar.gz
(36.1 kB
view details)
Built Distribution
File details
Details for the file Flask-RESTy-1.12.0.tar.gz
.
File metadata
- Download URL: Flask-RESTy-1.12.0.tar.gz
- Upload date:
- Size: 36.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7312adc0c4934ff60f82cfece5103e72d2998a3407049a4047002c3137152551 |
|
MD5 | 9b3389244660ffabc7240c91b98c2c8b |
|
BLAKE2b-256 | a396f0b199955227416d0e16b34d086764e898e3ef4ec71cc5f6c4859cfe2efa |
File details
Details for the file Flask_RESTy-1.12.0-py3-none-any.whl
.
File metadata
- Download URL: Flask_RESTy-1.12.0-py3-none-any.whl
- Upload date:
- Size: 42.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8789d2b1cce5d7c0d4587cdae65342549474a3c6766b2fcdca103de3fe031ab5 |
|
MD5 | e54c11347bca272611aa500a8b494e66 |
|
BLAKE2b-256 | 267f1837b8a794df6db34c670fd2e3bad843bc13326aea77b10af77e1b9ed9e9 |