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.3.tar.gz
(13.3 kB
view details)
Built Distribution
File details
Details for the file Flask-RESTy-0.10.3.tar.gz
.
File metadata
- Download URL: Flask-RESTy-0.10.3.tar.gz
- Upload date:
- Size: 13.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5e13194131947fea38ceb6a4605551585a37d407939595dd9fe048bd2da0abe8 |
|
MD5 | e2bf2b0ec3974ef333e73011810aa381 |
|
BLAKE2b-256 | b5ef77a5b394c7ee76ffb2dd882d2f8f40fe8fa7936063f0b588aab0fb00213a |
File details
Details for the file Flask_RESTy-0.10.3-py2.py3-none-any.whl
.
File metadata
- Download URL: Flask_RESTy-0.10.3-py2.py3-none-any.whl
- Upload date:
- Size: 20.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2698acd06d6a37ce4d016db40e6a1abc2472ce7e73d043ad98247c2553f045aa |
|
MD5 | df58da69f3d21ed7b70fb61694b9e050 |
|
BLAKE2b-256 | a248e54c4b0c02d8933caa0ded26bd4bf6773dd5ac097267d508a03c45f88cf0 |