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.15.3.tar.gz
(17.5 kB
view details)
Built Distribution
File details
Details for the file Flask-RESTy-0.15.3.tar.gz
.
File metadata
- Download URL: Flask-RESTy-0.15.3.tar.gz
- Upload date:
- Size: 17.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 12d36d76eca06ce721f01f1fdd52658407951304a7dd8c2d36ae18b62d0d7c2f |
|
MD5 | 0a6134b54860cd6f4b45688b9f12685e |
|
BLAKE2b-256 | e9323a5c19e76fa2a4c1e52043f8392d2d28f2d52db00c3f6b05c3dadd6d2069 |
File details
Details for the file Flask_RESTy-0.15.3-py2.py3-none-any.whl
.
File metadata
- Download URL: Flask_RESTy-0.15.3-py2.py3-none-any.whl
- Upload date:
- Size: 25.7 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b30c1347b78dc81fa1f0bd7ba6a7b3451a1589620c7683d42b0083200edcdecd |
|
MD5 | 243a7d5c17c8f0b957f0d9b15b7fde8e |
|
BLAKE2b-256 | 756a08136c7cdd621caefd923084a350d51f867f138f20d3d96a9fad586c3d79 |