-
Notifications
You must be signed in to change notification settings - Fork 0
/
Home.py
79 lines (55 loc) · 2.78 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
##© 2024 Tushar Aggarwal. All rights reserved.(https://tushar-aggarwal.com)
##Everyday_SQL
#######################################################################################################
#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_SQL.components.header import *
from src.Everyday_SQL.components.body import *
from src.Everyday_SQL.components.navigation import *
from src.Everyday_SQL.components.siderbar import *
from src.Everyday_SQL.components.metrics import *
from src.Everyday_SQL.components.charts import *
from src.Everyday_SQL.components.elements import *
from src.Everyday_SQL.components.test import *
#######################################################################################################
#Header of Everyday_SQL by github.com/tushar2704
#######################################################################################################
main_title()
#######################################################################################################
#Page Config of Everyday_SQL by github.com/tushar2704
#######################################################################################################
custom_style()
#######################################################################################################
#Body of Everyday_SQL 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/page1.py", label="Top SQL Queries", icon="🐍")
#######################
#Body
#######################################################################################################
#End of Everyday_SQL by github.com/tushar2704
#######################################################################################################
topics()
footer()
#######################################################################################################
#End of Everyday_SQL by github.com/tushar2704
#######################################################################################################