Metadata-Version: 2.1
Name: Flask-PyNgrok
Version: 1.0.3
Summary: Add tunneling support to your Flask Application.
Home-page: https://github.com/sidshrivastav/Flask-PyNgrok
Author: Siddhant Shrivastav
Author-email: siddhantshrivastava@outlook.com
License: MIT
Description: # Flask-PyNgrok
        Tunneling local web server for development using [PyNgrok](https://pypi.org/project/pyngrok/).
        
        Installation
        ------------
        
        Flask-PyNgrok is available on [PyPI](https://pypi.org/project/Flask-PyNgrok/) and can be installed using pip.
        
            pip install Flask-PyNgrok
        
        
        Basic Usage
        -----------
        
        Flask setting required `FLASK_ENV=development`:
            from Flask-PyNgrok import PyNgrok
            pyngrok = PyNgrok()
        
            def create_app(config):
                app = Flask(__name__)
                app.config.from_object(config)
                pyngrok.init_app(app)
        
            app = create_app(dev_config)
        
        
        License
        -------
        
        Flask-PyNgrok is distributed under MIT license, see LICENSE for more details.
        
        
Platform: any
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
