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.10.0.tar.gz
(13.2 kB
view details)
Built Distribution
File details
Details for the file Flask-RESTy-0.10.0.tar.gz
.
File metadata
- Download URL: Flask-RESTy-0.10.0.tar.gz
- Upload date:
- Size: 13.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5c4be68870e2f29bf12d3ad19e5ef4e4317ea576ee5dd161dc153c066e31c30b |
|
MD5 | 1c56ad2fe8c00d136e9d64b137376b05 |
|
BLAKE2b-256 | 53dfec17c9cce0d5c35c882a126616edc9b9f3dd5c80a1066a6887dd26a4a505 |
File details
Details for the file Flask_RESTy-0.10.0-py2.py3-none-any.whl
.
File metadata
- Download URL: Flask_RESTy-0.10.0-py2.py3-none-any.whl
- Upload date:
- Size: 19.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ca6a4b521d1e9e964a58a45e9a616a6e3eec0e6dcc80f8434d3ceafb952cb5c4 |
|
MD5 | a9d2369aa8342e896d552f473f40e1e3 |
|
BLAKE2b-256 | 9e188324cd2b9a261396b42e44a86050c3687af0004ad4d7bee43b2167707d7c |