alisaman commited on
Commit
5fcb37e
·
verified ·
1 Parent(s): bebd089

Delete app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -27
app.py DELETED
@@ -1,27 +0,0 @@
1
- import requests
2
-
3
- import streamlit as st
4
-
5
-
6
- Menu=['Home','News','Report']
7
- choise=st.sidebar.selectbox('Menu',Menu)
8
- if choise=='Home' :
9
- st.title('Welcome to Home Page')
10
-
11
- elif choise=='News' :
12
- st.title('Welcome to News page')
13
- tt = st.text_input('اخبار کدام تیم را دنبال می کنید؟')
14
- st.markdown('<style>.block-container {direction : rtl}</style>',
15
- unsafe_allow_html=True)
16
- r = requests.get(f'https://search-api.varzesh3.com/v1.0/query?q={tt}')
17
- x = r.json()
18
- st.title('اخبار ورزشی')
19
- for i in x['news']:
20
- st.subheader(i['title'])
21
- st.success(i['publishedOn'])
22
- st.write(i['shortDescription'])
23
- st.warning(i['viewCount'])
24
- st.image(i['picture'])
25
- st.write('---------------------')
26
- else :
27
- st.title('Welcom to Report page')