Spaces:
Sleeping
Sleeping
Commit
·
d0d1e70
1
Parent(s):
6745377
Update app.py
Browse files
app.py
CHANGED
@@ -30,4 +30,8 @@ for recipe in random.sample(recipes['results'], n_recipes):
|
|
30 |
recipe_list.append(recipe_dict)
|
31 |
|
32 |
df = pd.DataFrame.from_dict(recipe_list)
|
33 |
-
st.dataframe(
|
|
|
|
|
|
|
|
|
|
30 |
recipe_list.append(recipe_dict)
|
31 |
|
32 |
df = pd.DataFrame.from_dict(recipe_list)
|
33 |
+
st.dataframe(
|
34 |
+
df,
|
35 |
+
column_config={"url": st.column_config.LinkColumn()},
|
36 |
+
hide_index=True,
|
37 |
+
)
|