Skip to main content

Tools and extensions to make Flask development easier.

Project description

Fleaker is a framework built on top of Flask that aims to make using Flask easier and more productive, while promoting best practices.

Yes, it’s BSD licensed.

Easier to Setup

Save in an app.py:

import os

from fleaker import App

def create_app():
    app = App.create_app(__name__)
    settings_dict = {'DEBUG': True}
    app.configure('.settings', os.env, settings_dict)

    return app

if __name__ == '__main__':
    create_app().run()

Just as Easy to Use

Run it:

$ pip install fleaker
$ python app.py
 * Running on http://localhost:5000/

Download files

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

Source Distribution

fleaker-0.5.0.tar.gz (54.4 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