A simple way to demo Flask apps from your machine.
Project description
flask-ngrok
A simple way to demo Flask apps from your machine. Makes your Flask apps running on localhost available over the internet via the excellent ngrok tool.
Compatability
Python 3.6+ is required.
Installation
pip install flask-ngrok
Inside Jupyter / Colab Notebooks
Notebooks have an issue with newer versions of Flask, so force an older version if working in these environments.
!pip install flask==0.12.2
Quickstart
- Import with
from flask_ngrok import run_with_ngrok
- Add
run_with_ngrok(app)
to make your Flask app available upon running
# flask_ngrok_example.py
from flask import Flask
from flask_ngrok import run_with_ngrok
app = Flask(__name__)
run_with_ngrok(app) # Start ngrok when app is run
@app.route("/")
def hello():
return "Hello World!"
if __name__ == '__main__':
app.run()
Running the example:
python flask_ngrok_example.py
* Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
* Running on http://<random-address>.ngrok.io
* Traffic stats available on http://127.0.0.1:4040
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
flask-ngrok-0.0.18.tar.gz
(2.8 kB
view hashes)
Built Distribution
Close
Hashes for flask_ngrok-0.0.18-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ac9434adbc34900e7e4a82b6c8727ca415ebf882da36ad7baacede5f4784a955 |
|
MD5 | dbb784e130bf7cffd23aac80d1332383 |
|
BLAKE2b-256 | c7036978d8b81fa8bcce2f1a86e023de5a61782d706874c65522c5b9ff54f3e9 |