Skip to main content

Class based bottle endpoint resource plugin

Project description

BottleResource

Class based endpoint resource plugin for bottle framework

Usage

from bottle import Bottle

from bottle_resource import BottleResource, api, api_get, api_post, api_put, api_patch, api_delete


class DemoResource(BottleResource):

    @api('/demos')
    def get_demo_list(self):
        return {'demos': [1, 2, 3, 4, 5]}

    @api_get('/demos/<demo_id>')
    def get_demo_detail(self, demo_id):
        return {'name': 'demo', 'id': demo_id}

    @api_post('/demos')
    def create_demo(self):
        return {'status': 'ok', 'msg': 'created success'}

    @api_put('/demos/<demo_id>')
    def update_demo(self, demo_id):
        return {'status': 'ok', 'msg': 'updated success', 'id': demo_id}

    @api_patch('/demos/<demo_id>')
    def patch_demo(self, demo_id):
        return {'status': 'ok', 'msg': 'patch success', 'id': demo_id}

    @api_delete('/demos/<demo_id>')
    def delete_demo(self, demo_id):
        return {'status': 'ok', 'msg': 'delete success', 'id': demo_id}


if __name__ == '__main__':
    app = Bottle()
    app.install(DemoResource())
    app.run(host='0.0.0.0', port=8000, debug=True, reloader=True)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

BottleResource-0.0.2.tar.gz (2.2 kB view hashes)

Uploaded Source

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