Update app.py
Browse files
app.py
CHANGED
|
@@ -4,7 +4,7 @@ import streamlit as st
|
|
| 4 |
@st.cache_data(ttl=3600) # Cache the data for 1 hour
|
| 5 |
def fetch_readme_content():
|
| 6 |
try:
|
| 7 |
-
url = "https://raw.githubusercontent.com/EthicalML/awesome-production-machine-learning/
|
| 8 |
response = requests.get(url, timeout=30)
|
| 9 |
response.raise_for_status() # Raises HTTPError for bad responses
|
| 10 |
return response.text
|
|
|
|
| 4 |
@st.cache_data(ttl=3600) # Cache the data for 1 hour
|
| 5 |
def fetch_readme_content():
|
| 6 |
try:
|
| 7 |
+
url = "https://raw.githubusercontent.com/EthicalML/awesome-production-machine-learning/master/README.md"
|
| 8 |
response = requests.get(url, timeout=30)
|
| 9 |
response.raise_for_status() # Raises HTTPError for bad responses
|
| 10 |
return response.text
|