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.11.0.tar.gz
(35.7 kB
view details)
Built Distribution
File details
Details for the file Flask-RESTy-1.11.0.tar.gz
.
File metadata
- Download URL: Flask-RESTy-1.11.0.tar.gz
- Upload date:
- Size: 35.7 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.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 97ff7a4bc498475e9c74047254ab11ce194ab9868197a03bdf846cf5b1700257 |
|
MD5 | 72ec10df37bd730bfc724c139cc52ca8 |
|
BLAKE2b-256 | 22ca768e0214adadd8dd364ecbecf9b707b75231b31d1e4675521ff0c424630b |
File details
Details for the file Flask_RESTy-1.11.0-py3-none-any.whl
.
File metadata
- Download URL: Flask_RESTy-1.11.0-py3-none-any.whl
- Upload date:
- Size: 41.8 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.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a39934fb67ee991803831b0beb11c0bdc0b3130262ff2167f201e1702c71d0de |
|
MD5 | 3f0a9d0d0d399449bb5865a20b7956be |
|
BLAKE2b-256 | 3ade439c384b21fbc23d285304f27faa050a135f5ec529f9f73077a49b55666a |