Spaces:
Sleeping
Sleeping
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +2 -2
src/streamlit_app.py
CHANGED
|
@@ -48,13 +48,13 @@ def get_netflix_content():
|
|
| 48 |
return []
|
| 49 |
|
| 50 |
headers = {
|
| 51 |
-
"xc-
|
| 52 |
"accept": "application/json"
|
| 53 |
}
|
| 54 |
|
| 55 |
try:
|
| 56 |
response = requests.get(
|
| 57 |
-
f"{NOCODB_URL}/
|
| 58 |
headers=headers
|
| 59 |
)
|
| 60 |
|
|
|
|
| 48 |
return []
|
| 49 |
|
| 50 |
headers = {
|
| 51 |
+
"xc-token": api_token,
|
| 52 |
"accept": "application/json"
|
| 53 |
}
|
| 54 |
|
| 55 |
try:
|
| 56 |
response = requests.get(
|
| 57 |
+
f"{NOCODB_URL}/cleaned_netflix_titles_csv?limit=10000",
|
| 58 |
headers=headers
|
| 59 |
)
|
| 60 |
|