No project description provided
Project description
![Build Image](https://travis-ci.org/rhyselsmore/flask-endpoint.svg?branch=master)
Adaption of Flask Blueprints to form ‘Endpoints’, with a focus on the path and method of a resource.
Class based views didn’t cut it for me, so this is what I arrived at.
Go from this:
` >>> blueprint = Blueprint('users', __name__, url_prefix='/users') >>> @blueprint.route('/<string:user_id>', method=['DELETE']) `
to this:
` >>> endpoint = Endpoint('users', '/users', __name__) >>> @endpoint.delete('/<string:user_id>') `
Makes sense for my purposes, and I can still include per-route decorators, which is where classed based views fell down for me. This makes an incredible amount of sense in a HTTP API implementation where you need fine-grained control. For example, in the event that you want to implement a ‘lockdown’ of your API, you can include a specific decorator for ‘changing’ endpoints.
` >>> @endpoint.post() >>> @lockdown(severity=2) `
# Installation
` $ pip install flask-endpoint `
Or if you prefer easy-install:
` $ alias easy_install="pip install $1" $ easy_install flask-redis `
# Configuration
None (really!). Instead of running the following:
` >>> from flask import Blueprint `
just run:
` >>> from flask_endpoint import Endpoint `
and configure:
` >>> endpoint = Endpoint('users', '/users', __name__) >>> @endpoint.post() >>> @endpoint.post('/url') >>> @endpoint.get() >>> @endpoint.get('/url') `
The package supports all of the methods available to flask (GET/POST/PUT/PATCH/DELETE/OPTIONS/HEAD).
All of the standard blueprint optional arguments will be passed through (sans url-prefix), which makes this fairly easy to adopt.
When it comes time to register them, do as you would a Blueprint:
` >>> app.register_blueprint(endpoint) `
# Contribution
Check for open issues or open a fresh issue to start a discussion around a feature idea or a bug. There is a Contributor Friendly tag for issues that should be ideal for people who are not very familiar with the codebase yet.
Fork [the repository](https://github.com/rhyselsmore/flask-endpoint) on Github to start making your changes to the master branch (or branch off of it).
Write a test which shows that the bug was fixed or that the feature works as expected.
Send a pull request and bug the maintainer until it gets merged and published.
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
File details
Details for the file flask-endpoint-0.1.tar.gz
.
File metadata
- Download URL: flask-endpoint-0.1.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 33b303e66cb626f7d2655a262e427a5711db78613aa8f19c01df375460d766e7 |
|
MD5 | 7b0a421a6b6fc586f621910bf3c5a93b |
|
BLAKE2b-256 | 4dd77c237a57df64217389de6fe5724dd262a718836416b970215fe2b9b41c30 |