bsenst commited on
Commit
ab58ba3
·
verified ·
1 Parent(s): f250e40

show separate list of urls

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -32,6 +32,9 @@ def main():
32
  st.write(f"[Google Play Link](https://play.google.com/store/apps/details?id={app['appId']})")
33
  st.image(app['icon'], width=64)
34
  st.write("---")
 
 
 
35
  else:
36
  st.warning("No results found.")
37
 
 
32
  st.write(f"[Google Play Link](https://play.google.com/store/apps/details?id={app['appId']})")
33
  st.image(app['icon'], width=64)
34
  st.write("---")
35
+
36
+ for i, app in enumerate(results, 1):
37
+ st.write(f"https://play.google.com/store/apps/details?id={app['appId']}")
38
  else:
39
  st.warning("No results found.")
40