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.11.5.tar.gz
(14.7 kB
view details)
Built Distribution
File details
Details for the file Flask-RESTy-0.11.5.tar.gz
.
File metadata
- Download URL: Flask-RESTy-0.11.5.tar.gz
- Upload date:
- Size: 14.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2616b099de02294f49015707d3d50c26b5af48472feb6f57aad2ccb17b735d14 |
|
MD5 | b2ad493bcfab46c49410f24387977512 |
|
BLAKE2b-256 | 7ba68dedcb2230f5a99942b275a17acec9f1eafc49bcc721d3e3852e49fc56dc |
File details
Details for the file Flask_RESTy-0.11.5-py2.py3-none-any.whl
.
File metadata
- Download URL: Flask_RESTy-0.11.5-py2.py3-none-any.whl
- Upload date:
- Size: 21.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5ecf7789b270a29e4242a2a4c8820011bc31519a56c5cf8aea84df2575309349 |
|
MD5 | 563c6204c455e4718c0849df3d683667 |
|
BLAKE2b-256 | b95a1868989bcccfe0d2ec3c926dd4ee96a9865c61e40fc0641aed014689bd8b |