File size: 2,378 Bytes
2482ff6
 
 
332e76f
2482ff6
 
 
332e76f
2482ff6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
332e76f
 
2482ff6
 
 
332e76f
 
2482ff6
 
 
332e76f
2482ff6
 
 
332e76f
 
 
2482ff6
 
 
 
 
 
332e76f
 
2482ff6
332e76f
 
 
 
 
 
 
 
 
 
2482ff6
 
332e76f
 
2482ff6
332e76f
2482ff6
 
332e76f
2482ff6
332e76f
 
 
 
 
 
 
 
 
 
 
 
 
 
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
##© 2023 Tushar Aggarwal. All rights reserved.
##Streamlit Magic Cheat Sheets
#######################################################################################################

#######################################################################################################
#Importind required libraries
#######################################################################################################

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")
#######################################################################################################
#Importing from SRC
#######################################################################################################
from src.Streamlit_Magic_Sheet.components.header import *
from src.Streamlit_Magic_Sheet.components.body import *
from src.Streamlit_Magic_Sheet.components.navigation import *
from src.Streamlit_Magic_Sheet.components.siderbar import *
from src.Streamlit_Magic_Sheet.components.metrics import *
from src.Streamlit_Magic_Sheet.components.charts import *
from src.Streamlit_Magic_Sheet.components.test import *
#######################################################################################################
#Page Config of Streamlit-Magic-Sheet by github.com/tushar2704
#######################################################################################################


page_title="Streamlit Magic Cheat Sheets"
page_icon="🪄"
layout='wide'


page_config(page_title=page_title,
            page_icon=page_icon,
            layout=layout)

#######################################################################################################
#Header of Streamlit-Magic-Sheet by github.com/tushar2704
#######################################################################################################



#main_header 
main_header(title="Streamlit Magic Cheat Sheets",
            header=None,
            subheader=None,
            markdown=None
            )


left_main_panel()










#st.write(whole)
#instance 


# col1, col2=st.columns((1,2), gap="large")

# inst=test_1()
# col1=inst.cs_sidebar()

# col2=inst.cs_sidebar2()