Skip to content

Tunneling local web server for development using PyNgrok.

License

Notifications You must be signed in to change notification settings

sidshrivastav/Flask-PyNgrok

Repository files navigation

Flask-PyNgrok

Tunneling local web server for development using PyNgrok.

Installation

Flask-PyNgrok is available on PyPI 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.

About

Tunneling local web server for development using PyNgrok.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages