Update app.py
Browse files
app.py
CHANGED
|
@@ -42,7 +42,7 @@ def main():
|
|
| 42 |
st.title('SeeFood🍔')
|
| 43 |
st.write('Upload a food image and get the recipe for that food and other details of that food')
|
| 44 |
|
| 45 |
-
col1, col2 = st.columns(2
|
| 46 |
|
| 47 |
with col1:
|
| 48 |
# image uploading button
|
|
@@ -97,7 +97,7 @@ def main():
|
|
| 97 |
# desplay food recipe
|
| 98 |
st.header(recipe_data['title']+" Recipe")
|
| 99 |
|
| 100 |
-
col3, col4 = st.columns(2
|
| 101 |
|
| 102 |
with col3:
|
| 103 |
# Ingridents of recipie
|
|
|
|
| 42 |
st.title('SeeFood🍔')
|
| 43 |
st.write('Upload a food image and get the recipe for that food and other details of that food')
|
| 44 |
|
| 45 |
+
col1, col2 = st.columns(2)
|
| 46 |
|
| 47 |
with col1:
|
| 48 |
# image uploading button
|
|
|
|
| 97 |
# desplay food recipe
|
| 98 |
st.header(recipe_data['title']+" Recipe")
|
| 99 |
|
| 100 |
+
col3, col4 = st.columns(2)
|
| 101 |
|
| 102 |
with col3:
|
| 103 |
# Ingridents of recipie
|