Bey007 commited on
Commit
1eb041d
·
verified ·
1 Parent(s): 7645fdc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -59,7 +59,7 @@ if user_input:
59
 
60
  # Search YouTube for videos related to the selected activity
61
  search = Search(activity)
62
- search_results = search.results[:2] # limit results to 2 videos
63
  for video in search_results:
64
  st.write(f"[{video.title}]({video.watch_url})")
65
 
 
59
 
60
  # Search YouTube for videos related to the selected activity
61
  search = Search(activity)
62
+ search_results = search.results[:3] # limit results to 2 videos
63
  for video in search_results:
64
  st.write(f"[{video.title}]({video.watch_url})")
65