Flask(-Twisted) microframework for microservices with Prometheus and Sentry support.
Project description
flacon
Flask(-Twisted/Gunicorn) microframework for microservices with Prometheus and Sentry support.
The goal is to remove most of the boilerplate necessary to start a simple HTTP application. This provides:
- Sane arguments (
--host
,--port
,--debug
,--log-level
) - Support to have a production ready uwsgi container (
--twisted
or--gunicorn
) - Prometheus support with default metrics (
flacon.metrics
: See prometheus_flask_exporter) - Optional sentry support if the
SENTRY_DSN
env var is set. - If you have a 'static' directory in your module, just put a favicon.ico inside!
Installation
pip install flacon
# To use a production ready wsgi server install one of the following extra requirements
pip install flacon[twisted]
pip install flacon[gunicorn]
Quick-start
from flacon import Flacon
flacon = Flacon(__name__)
app = flacon.app # This is a flask.Flask() app.
@app.route('/example')
def index():
return 'Example'
def main():
flacon.run()
if __name__ == '__main__':
main()
Want to know more? Look at example/app.py, you can run it with flacon-example
.
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
flacon-0.4.0.tar.gz
(10.6 kB
view details)
File details
Details for the file flacon-0.4.0.tar.gz
.
File metadata
- Download URL: flacon-0.4.0.tar.gz
- Upload date:
- Size: 10.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.4.0 requests-toolbelt/0.8.0 tqdm/4.31.1 CPython/2.7.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9c17d31109d17b5bf3583429755ed4905ddd4091c0946fae08ea514d8ae09d64 |
|
MD5 | c5635b6dc91447ca6cb0d26616e7cffb |
|
BLAKE2b-256 | 4ba3a1c367fcf0908010650f49fd555d6cd590e1659894e740e61730fef91b12 |