mtoft20 commited on
Commit
3509c5b
·
verified ·
1 Parent(s): c9ce30a

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. 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-auth": api_token,
52
  "accept": "application/json"
53
  }
54
 
55
  try:
56
  response = requests.get(
57
- f"{NOCODB_URL}/Netflix?limit=10000",
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