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-5.0.0.tar.gz
(53.3 kB
view details)
Built Distribution
File details
Details for the file Flask-RESTy-5.0.0.tar.gz
.
File metadata
- Download URL: Flask-RESTy-5.0.0.tar.gz
- Upload date:
- Size: 53.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 13e6ff4f3527de34f9cabc295d507e9ace0714348c21366cf9991e79196e966d |
|
MD5 | 5e7495ff3563e48d443d73c8aac47983 |
|
BLAKE2b-256 | f3ae938198dc764e8dc1e39b6823779a98faecbe62a782e2bf90a37f621c0af4 |
File details
Details for the file Flask_RESTy-5.0.0-py3-none-any.whl
.
File metadata
- Download URL: Flask_RESTy-5.0.0-py3-none-any.whl
- Upload date:
- Size: 42.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4362e1bc863ca64ad30a066644b07b4963e5be2c8b0ba716df074b9e638a0791 |
|
MD5 | 401cc451ce23accf7e8988c5bc97a3b8 |
|
BLAKE2b-256 | 0c7e1f8d02efbfb55af178f497da29c941180f491baf209a0161b3d5afb8bcd8 |