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.18.1.tar.gz
(18.5 kB
view details)
Built Distribution
File details
Details for the file Flask-RESTy-0.18.1.tar.gz
.
File metadata
- Download URL: Flask-RESTy-0.18.1.tar.gz
- Upload date:
- Size: 18.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 13252363c310c26e1608569ee980df6ecd05198ee3ae9fd35c56beadb7a9dd79 |
|
MD5 | 0f749371aee42bc429707207806e64f2 |
|
BLAKE2b-256 | b22f2b721d3668fd958c6a453c42668dbef9f89650acd760accd37aae73d581b |
File details
Details for the file Flask_RESTy-0.18.1-py2.py3-none-any.whl
.
File metadata
- Download URL: Flask_RESTy-0.18.1-py2.py3-none-any.whl
- Upload date:
- Size: 26.7 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1d7942595e0c7d5976026d968a77c8e0dee5eff5ed5e852062dbdda27f8f81dd |
|
MD5 | 22c4fb97012129ee15bea2aa8fb3aadb |
|
BLAKE2b-256 | e90462319cd200137dfe8c155e4bea4d7c9cf5615d1a3dc70cb9d8069ec60786 |