Provide api-key based auth for your apis.
Project description
flask-api-key
Simple Flask Extension to easily add api auth using the good tried and tested api key model.
Why :man_shrugging:
JWTs can be great. Especially if you have 100 microservices and are growing at the rate of Facebook.
But for those of us that are not scaling at the rate of Facebook or Google, JWTs may be unnecessary. Api Keys can be instantly revoked. No refresh-token policies to worry about (is there a secure refresh standard yet?). With just a little caching(Redis), many of the DB round-trips can be avoided as well. But most of all, api keys are easy to use. Your developers can get started in no time.
So obviously, we believe. However, while there are tons of JWT/JWS/JWE,JWABC token extensions, very few api key extensions exist. So, this is my attempt to fill that void.
Install :floppy_disk:
First things first, install it.
pip install flask-api-key
Use :muscle:
- Add to your flask project without the app factory pattern
from flask import Flask
from flask_api_key import APIKeyManager
app = Flask(__name__)
my_key_manager = APIKeyManager(app)
Or with the app factory pattern
my_key_manager = APIKeyManager()
...
def create_app():
app = Flask(__name__)
my_key_manager.init_app(app)
return app
- Create an api-key
my_key = my_key_manager.create('MY_FIRST_KEY')
print(my_key.secret)
- Decorate an endpoint
from flask_api_key import api_key_required
@route('/api/v1/secure')
@api_key_required
def my_endpoint():
return jsonify({'foo': 'bar'})
- Fetch your endpoint with your key in the Auth header
curl https://yoursite.com/api/v1/secure
-H "Accept: application/json"
-H "Authorization: Bearer INSERT_YOUR_API_KEY_HERE"
Extension Configuration :toolbox:
Variable | Default | Type | Description |
---|---|---|---|
FLASK_API_KEY_LOCATION | 'Header' |
String | Location of the key in the request |
FLASK_API_KEY_HEADER_NAME | 'Authorization' |
String | Which header to use |
FLASK_API_KEY_HEADER_TYPE | 'Bearer' |
String | Which header type to use |
FLASK_API_KEY_PREFIX | 'my_api' |
String | Used to identify your site's keys in a breach [^1] |
FLASK_API_KEY_SECRET_LENGTH | 64 |
Int | Length in characters of the key's secret portion |
FLASK_API_KEY_SECRET_CHARSET | 'ascii_62' |
String | Passlib compliant charset name to use |
The extension is configured via Flask's built-in config object, app.config. If unfamiliar with Flask's app.config, it's time to read up on flask: https://flask.palletsprojects.com/
All configuration writing should be done in flask. However, often times it is necessary to read the config. We have included multiple ways to access a read-only version of the config. This read-only config has normalized keys. The FLASK_API_KEY_ namespace has been removed and the remainder is lower case.
Example [^2]
loc = my_key_manager.config['location']
print(loc) # will print 'Header'
Also
from flask-api-key.utils import get_ext_config
cfg = get_ext_config()
loc = cfg['location']
print(loc) # will print 'Header'
[^1]: Prefix has many options to explore. You could use a prefix that unquestionably identifies your keys, such as real_sitename_com_. Or, if you want to be more vague, you could make up a prefix such as acFFC128jlk_. As long as you can write a regex to identify your keys, sites such as github will assist you in identifying compromised keys. [^2]: Both of the examples should print 'Header' only if the config is default and has not been changed.
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
Built Distribution
File details
Details for the file flask-api-key-0.2.12.tar.gz
.
File metadata
- Download URL: flask-api-key-0.2.12.tar.gz
- Upload date:
- Size: 11.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 511e9f91ee7811c43e27a98f13e27033ff4ccd2724a7e37f879f347e8a53a9e0 |
|
MD5 | ebf493f25374626652a76d4298032c9e |
|
BLAKE2b-256 | 28057aad524f9827af414b2339af6a4dfacae42855d4dbb9da220aa878d0cb15 |
File details
Details for the file flask_api_key-0.2.12-py3-none-any.whl
.
File metadata
- Download URL: flask_api_key-0.2.12-py3-none-any.whl
- Upload date:
- Size: 11.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0441714674535dfd36708ea19149ce6764a21f23178d6f09fde28bddaeeaa176 |
|
MD5 | 0a1ef1c69224cfee152cd2e3e181cd5b |
|
BLAKE2b-256 | 7560de947e04bae410e04154332748b3225f112f6dcc5327d134713b89c9caf1 |