Building blocks for REST APIs for Flask
Project description
Building blocks for REST APIs for Flask.
Usage
Create a SQLAlchemy model and a marshmallow schema, then:
from flask_resty import Api, GenericModelView
from .models import Widget
from .schemas import WidgetSchema
class WidgetViewBase(GenericModelView):
model = Widget
schema = 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)
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.6.0.tar.gz
(12.4 kB
view details)
Built Distribution
File details
Details for the file Flask-RESTy-0.6.0.tar.gz
.
File metadata
- Download URL: Flask-RESTy-0.6.0.tar.gz
- Upload date:
- Size: 12.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c6697006fa663877712b4e736cb99f66ff7fbfccd884287df649e2998f6d52c2 |
|
MD5 | a1525a9dbdff51b2b4a83d4e2db015de |
|
BLAKE2b-256 | 32351127fcc3107597c1016b27435a24ee279899e48ef56ce7d0616677cc1cfc |
File details
Details for the file Flask_RESTy-0.6.0-py2.py3-none-any.whl
.
File metadata
- Download URL: Flask_RESTy-0.6.0-py2.py3-none-any.whl
- Upload date:
- Size: 18.8 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ee441b42c4131cec6e46e04ebfceb239933060dbb4dfa0b5837de3890255820e |
|
MD5 | e4798c6f19f5af3544875b47ccd4c10a |
|
BLAKE2b-256 | 482758f2756360eb1a29d75b335eafeab5c411850a89d35671718c870fdb2eea |