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.9.7.tar.gz
(12.9 kB
view details)
Built Distribution
File details
Details for the file Flask-RESTy-0.9.7.tar.gz
.
File metadata
- Download URL: Flask-RESTy-0.9.7.tar.gz
- Upload date:
- Size: 12.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a25c228828b8f2c332c262447c5e74733adb049e2d30f698d4621628419de5c2 |
|
MD5 | a55d7998d62613bd70e4bfcf6a98a4be |
|
BLAKE2b-256 | c83f5bc7818c20c26bc32faabe5ba004bbae53c4aa4261db14a042653f2eb3d3 |
File details
Details for the file Flask_RESTy-0.9.7-py2.py3-none-any.whl
.
File metadata
- Download URL: Flask_RESTy-0.9.7-py2.py3-none-any.whl
- Upload date:
- Size: 19.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 885012113663b33df3a1eb339493f073239935097eca99d71d21d7f16357d61f |
|
MD5 | 65363653a17e092346fbefcb435063b9 |
|
BLAKE2b-256 | 42ccc7e03abdeb92e88a3926817dda7cb679a30a9bd1d320e3bae58a12ff9eca |