Update app.py
Browse files
app.py
CHANGED
|
@@ -10,7 +10,7 @@ def lottiemaker(path):
|
|
| 10 |
|
| 11 |
def loadimg(path):
|
| 12 |
img = Image.open(path)
|
| 13 |
-
img = img.resize((
|
| 14 |
return img
|
| 15 |
|
| 16 |
selected = option_menu(
|
|
@@ -39,6 +39,22 @@ if selected == 'About me':
|
|
| 39 |
with col3:
|
| 40 |
st.image(loadimg('numpy.png'),use_column_width=False)
|
| 41 |
st.write('Numpy')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 42 |
elif selected == 'Projects':
|
| 43 |
st.write(selected)
|
| 44 |
else:
|
|
|
|
| 10 |
|
| 11 |
def loadimg(path):
|
| 12 |
img = Image.open(path)
|
| 13 |
+
img = img.resize((180,180))
|
| 14 |
return img
|
| 15 |
|
| 16 |
selected = option_menu(
|
|
|
|
| 39 |
with col3:
|
| 40 |
st.image(loadimg('numpy.png'),use_column_width=False)
|
| 41 |
st.write('Numpy')
|
| 42 |
+
|
| 43 |
+
with col4:
|
| 44 |
+
st.image(loadimg('keras.png'),use_column_width=False)
|
| 45 |
+
st.write('Keras')
|
| 46 |
+
|
| 47 |
+
col1,col2,col3,col3 = st.columns(3)
|
| 48 |
+
with col1:
|
| 49 |
+
st.image(loadimg('matplotlib.png'),use_column_width=False)
|
| 50 |
+
st.write('Matplotlib')
|
| 51 |
+
with col2:
|
| 52 |
+
st.image(loadimg('kaggle.png'),use_column_width=False)
|
| 53 |
+
st.write('Kaggle')
|
| 54 |
+
with col3:
|
| 55 |
+
st.image(loadimg('pandas.png'),use_column_width=False)
|
| 56 |
+
st.write('Pandas')
|
| 57 |
+
|
| 58 |
elif selected == 'Projects':
|
| 59 |
st.write(selected)
|
| 60 |
else:
|