Metadata-Version: 1.1
Name: flask-tat
Version: 0.0.2
Summary: Flask TAT client
Home-page: https://github.com/cdumay/flask-tat
Author: Cedric DUMAY
Author-email: cedric.dumay@gmail.com
License: Apache License
Description: .. image:: https://travis-ci.org/cdumay/flask-tat.svg?branch=master
            :target: https://travis-ci.org/cdumay/flask-tat
        
        =========
        flask-tat
        =========
        
        OVH TAT client as Flask extension.
        
        ----------
        Quickstart
        ----------
        
        First, install flask-tat using
        `pip <https://pip.pypa.io/en/stable/>`_::
        
            pip install flask-tat
        
        
        Next, add a :code:`TATClient` instance to your code:
        
        .. code-block:: python
        
            from flask import Flask
            from flask_tat import TATClient
        
            app = Flask(__name__)
            app.config.update(dict(
                TAT_URL="http://the.tat.server",
                TAT_USERNAME="username",
                TAT_PASSWORD="password,
            ))
        
            tat_client = TATClient(app)
        
        -------
        License
        -------
        
        Apache License 2.0
Platform: UNKNOWN
Classifier: Programming Language :: Python
