Skip to main content

Tools and extensions to make Flask development easier.

Project description

Fleaker
-------

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:

.. code:: python

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:

.. code:: bash

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

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

fleaker-0.2.0.tar.gz (33.1 kB view hashes)

Uploaded Source

Built Distribution

fleaker-0.2.0-py2.py3-none-any.whl (44.4 kB view hashes)

Uploaded Python 2 Python 3

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