-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathHome.py
169 lines (109 loc) · 4.01 KB
/
Home.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
##© 2024 Tushar Aggarwal. All rights reserved.(https://tushar-aggarwal.com)
##Everyday_Python
#######################################################################################################
#Importing dependecies
#######################################################################################################
import streamlit as st
from pathlib import Path
import base64
import sys
from pathlib import Path
script_dir = Path(__file__).resolve().parent
project_root = script_dir.parent
sys.path.append(str(project_root))
import warnings
warnings.filterwarnings("ignore")
import os
#######################################################################################################
#Importing from SRC
#######################################################################################################
from src.Everyday_Python.components.header import *
from src.Everyday_Python.components.body import *
from src.Everyday_Python.components.navigation import *
from src.Everyday_Python.components.siderbar import *
from src.Everyday_Python.components.metrics import *
from src.Everyday_Python.components.charts import *
from src.Everyday_Python.components.test import *
#######################################################################################################
#Header of Everyday_Python by github.com/tushar2704
#######################################################################################################
main_title()
#######################################################################################################
#Page Config of Everyday_Python by github.com/tushar2704
#######################################################################################################
custom_style()
#######################################################################################################
#Body of Everyday_Python by github.com/tushar2704
#######################################################################################################
page_header('''
''')
#Sidebar Pages
with st.sidebar:
logo()
st.page_link("Home.py", label="Everyday Cheat Sheets", icon="🐍")
# st.page_link("pages/page2.py", label="Everyday Cheat Sheets", icon="🐍")
# st.page_link("pages/page3.py", label="Data Structures", icon="🐍")
st.page_link("pages/page5.py", label="Pro Python", icon="🐍")
st.page_link("pages/page4.py", label="500 Interview Solutions", icon="🐍")
#######################
#Body
sheet1,sheet2,sheet3,sheet4,sheet5,sheet6,sheet7,sheet8,sheet9,sheet10,sheet11,sheet12,sheet13,sheet14,sheet15,sheet16,sheet17,sheet18, sheet19, sheet20, sheet21=st.tabs(
["Pip","OS","CLI","Files","Http","Lists","Dict",
"Math","DB","GraphQL","Re","Str","Scrap","Async","Network","DF","NP","PLT","SKL","PX",
"Time"]
)
with sheet1:
pip_()
with sheet2:
os_()
with sheet3:
cli()
with sheet4:
file_handling()
with sheet5:
http_apis()
with sheet6:
lists()
with sheet7:
dict()
with sheet8:
math()
with sheet9:
databases()
with sheet10:
graphql()
with sheet11:
re_()
with sheet12:
strings()
with sheet13:
web_scraping()
with sheet14:
async_()
with sheet15:
network()
with sheet16:
df_()
with sheet17:
numpy_()
with sheet18:
plots()
with sheet19:
scikit_()
with sheet20:
plotly_()
with sheet21:
time_()
# with sheet22:
# adv_()
# with sheet23:
# oop()
# with sheet24:
# deco_()
#######################################################################################################
#End of Everyday_Python by github.com/tushar2704
#######################################################################################################
footer()
#######################################################################################################
#End of Everyday_Python by github.com/tushar2704
#######################################################################################################