Skip to main content

Building blocks for REST APIs for Flask

Project description

Flask-RESTy Travis Codecov PyPI marshmallow 3 compatible

Flask-RESTy provides building blocks for creating REST APIs with Flask, SQLAlchemy, and marshmallow.

from flask_resty import Api, GenericModelView

from . import app, models, schemas


class WidgetViewBase(GenericModelView):
    model = models.Widget
    schema = schemas.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)

Documentation

Documentation is available at https://flask-resty.readthedocs.io/.

License

MIT Licensed. See the bundled LICENSE file for more details.

Project details


Release history Release notifications | RSS feed

This version

1.4.0

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-1.4.0.tar.gz (31.0 kB view details)

Uploaded Source

Built Distribution

Flask_RESTy-1.4.0-py3-none-any.whl (37.9 kB view details)

Uploaded Python 3

File details

Details for the file Flask-RESTy-1.4.0.tar.gz.

File metadata

  • Download URL: Flask-RESTy-1.4.0.tar.gz
  • Upload date:
  • Size: 31.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for Flask-RESTy-1.4.0.tar.gz
Algorithm Hash digest
SHA256 d706afe4b6fe053f2a36242eb3eb72e5e0f261bfbc61c259a6d24507c10c5a7b
MD5 4562853b2c92a9f3385fc5a10f9673d4
BLAKE2b-256 1c5aedef80bdde8624bd81f1d4a663c4dd0833bcedf9ce48bc88504b74e90657

See more details on using hashes here.

File details

Details for the file Flask_RESTy-1.4.0-py3-none-any.whl.

File metadata

  • Download URL: Flask_RESTy-1.4.0-py3-none-any.whl
  • Upload date:
  • Size: 37.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for Flask_RESTy-1.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 be997b75f525f5927ef3f55966bf263beb8a2304ab6c991700ab51997308e293
MD5 be450d478870a52d8dac3ffc4593723e
BLAKE2b-256 582e65fd9df42c8a604e08fca0a3e255e269f2c91b1454d5ea0ca760436f96a2

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page