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.3.0.tar.gz
(30.7 kB
view details)
Built Distribution
File details
Details for the file Flask-RESTy-1.3.0.tar.gz
.
File metadata
- Download URL: Flask-RESTy-1.3.0.tar.gz
- Upload date:
- Size: 30.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | accab5092832928f3ada1ce3f908b4526e9c83c9d9ac6d152b2967cbbee39bac |
|
MD5 | 1d2f38144f55030061b11da83e753cf2 |
|
BLAKE2b-256 | 437961cfeb8e65ca9cbf72203c0c3cd0ab9acebda31d6c3a6c420568cfb0540e |
File details
Details for the file Flask_RESTy-1.3.0-py3-none-any.whl
.
File metadata
- Download URL: Flask_RESTy-1.3.0-py3-none-any.whl
- Upload date:
- Size: 37.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ffe87e323874f599e2ae18dce072ccc5557a2ea501dcae0b43342637391c47d5 |
|
MD5 | 3c413a730e00ead66737438ed0a046cb |
|
BLAKE2b-256 | 0360b828218ec7663f102ebb7208eb2782401d390d82331416b20ae628d70c03 |