show separate list of urls
Browse files
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 |
|