Metadata-Version: 2.1
Name: quorum
Version: 0.8.0
Summary: Quorum Extensions for Flask
Home-page: http://flask-quorum.hive.pt
Author: Hive Solutions Lda.
Author-email: development@hive.pt
License: Apache License, Version 2.0
Description: # [![Quorum Extensions for Flask](res/logo.png)](http://flask-quorum.hive.pt)
        
        A small extension framework for Flask to easy a series of simple tasks.
        
        ## Usage
        
        ```python
        import flask
        import quorum
        
        app = quorum.load(
            name = __name__
        )
        
        @app.route("/", methods = ("GET",))
        def index():
            return flask.render_template("index.html.tpl")
        
        if __name__ == "__main__":
            quorum.run()
        ```
        
        Creation of background callables, that will execute every one second in a separate thread
        
        ```python
        @quorum.background(timeout = 1.0)
        def hello_recursive():
            print("hello word")
        ```
        
        ## Building
        
        ```bash
        sphinx-build -b html doc doc/_build
        ```
        
        ## Documentation
        
        Extra documentation is available under our readthedocs.com [page](https://quorum.readthedocs.org). Keep
        in mind that some delay may exist between the current repository `master` version and the documentation.
        
        We need people to help documentation the code base if you know anyone please contact us.
        
        ## Build Automation
        
        [![Build Status](https://app.travis-ci.com/hivesolutions/flask-quorum.svg?branch=master)](https://travis-ci.com/github/hivesolutions/flask-quorum)
        [![Coverage Status](https://coveralls.io/repos/hivesolutions/flask-quorum/badge.svg?branch=master)](https://coveralls.io/r/hivesolutions/flask-quorum?branch=master)
        [![PyPi Status](https://img.shields.io/pypi/v/quorum.svg)](https://pypi.python.org/pypi/quorum)
        [![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://www.apache.org/licenses/)
        
Keywords: quorum flask
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.0
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
