Streamlit generated URLs doesnt work

Summary

Streamlit generated URLs doesnt work

Steps to reproduce

Code snippet:

pip install streamlit
%%writefile app.py
import streamlit as st
import yfinance as yf

st.title("Stocks App")
symbol = st.text_input("Enter a stock symbol", "AAPL")
if st.button("Get Quote"):
    st.json(yf.Ticker(symbol).info)

!npm install localtunnel

!tunnel lt --port 8080 --subdomain pcdemo
!streamlit run app.py & npx localtunnel --port 8080

----------------------------------------------------

2023-05-23 02:12:54.981 INFO    numexpr.utils: NumExpr defaulting to 2 threads.
[##................] - fetchMetadata: sill resolveWithNewModule is-fullwidth-co
Collecting usage statistics. To deactivate, set browser.gatherUsageStats to False.


  You can now view your Streamlit app in your browser.

  Network URL: http://172.28.0.12:8501
  External URL: http://34.122.118.140:8501

npx: installed 22 in 2.259s
your url is: https://fast-beans-stare.loca.lt```

If applicable, please provide the steps we should take to reproduce the error or specified behavior.

**Expected behavior:**

The app should start

**Actual behavior:**

URLs not opening , getting not found

### Debug info

- Streamlit version: (get it with `$ streamlit version`)  - 1.13
- Python version: (get it with `$ python --version`) - 3.10
- Using Conda? PipEnv? PyEnv? Pex? Tried with Jupyter notebook and google colab same error
- OS version: Windows 11
- Browser version: Edge version 113.0.1774.50 

### Requirements file

Using Conda? PipEnv? PyEnv? Pex? Share the contents of your requirements file here.
Not sure what a requirements file is? Check out [this doc](https://docs.streamlit.io/streamlit-cloud/get-started/deploy-an-app/app-dependencies) and add a requirements file to your app.

### Links

* Link to your GitHub repo:
* Link to your deployed app:

### Additional information

If needed, add any other context about the problem here.

Hey @Deepa_Nair,

Which URL isn’t working for you?

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.