A simple way to demo Flask apps from your machine.
Project description
flask-localtunnel
This inspired from flask-ngrok
Disclaimer:-
Use it only for educational purpose.
A simple way to demo Flask apps from your machine. Makes your Flask apps running on localhost available over the internet via the excellent localtunnel tool.
Compatability
Python 3.6+ is required.
Installation
pip install flask-localtunnel
Inside Jupyter / Colab Notebooks
!pip install flask
Quickstart
- Import with
from flask_localtunnel import run_with_lt
- Add
run_with_lt(app)
to make your Flask app available upon running
# flask_ngrok_example.py
from flask import Flask
from flask_lt import run_with_lt
app = Flask(__name__)
run_with_lt(app)
@app.route("/")
def hello():
return "Hello World!"
if __name__ == '__main__':
app.run()
Running the example:
python flask_lt_example.py
* Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
* localtunnel is alreadty installed.
* your url is: https://<random-url>.loca.lt
Support my work :-
BTC - bc1qx2p08qtsxxdzj0yfr2cm7yy3g5ydv3mt2753le
ETH - 0x40e69DaEC18cD199535b055BDA6582daa5978145
Contributer :-
- @henk717
- @NobreHD : subdomain support
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file flask_localtunnel-1.0.7-py3-none-any.whl
.
File metadata
- Download URL: flask_localtunnel-1.0.7-py3-none-any.whl
- Upload date:
- Size: 3.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8f2bde197ec545bbd7ef0df8cdf7d4facb5bfe77458a140d5bc92f788eba306e |
|
MD5 | 47566e48c7f42337a4bdd6ab0792e510 |
|
BLAKE2b-256 | d26d1aa24d1be4e530bac07cd0d7d525b483dfe7fe2b8b4101d1eef79ba0bfd6 |