gstaff / flask-ngrok

A simple way to demo Flask apps from your machine.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to deal with the problem 'Tunnel 153bbde33b1d.ngrok.io not found'

zhgqcn opened this issue · comments

How to deal with the problem 'Tunnel 153bbde33b1d.ngrok.io not found'
from google.colab import drive
drive.mount('/content/drive')
!pip install flask-ngrok
!pip install pyngrok
!pip install flask==0.12.2
# 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()

image