-
Notifications
You must be signed in to change notification settings - Fork 4
/
Home.py
44 lines (34 loc) · 2.03 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
##© 2023 Tushar Aggarwal. All rights reserved.
##Streamlit Magic Cheat Sheets
#######################################################################################################
#Full length is above 10000 lines and is avalibale when you buy me a beer (https://www.buymeacoffee.com/taggdata)
#######################################################################################################
#Importind required libraries
#######################################################################################################
import streamlit as st
from pathlib import Path
import base64
import sys
from pathlib import Path
import warnings
warnings.filterwarnings("ignore")
import os
#######################################################################################################
#Importing from SRC
#######################################################################################################
#######################################################################################################
#Header of Streamlit Magic Cheat Sheets by github.com/tushar2704
#######################################################################################################
main_header()
#######################################################################################################
#Page Config of Streamlit Magic Cheat Sheets by github.com/tushar2704
#######################################################################################################
custom_style()
#######################################################################################################
#Body of Streamlit Magic Cheat Sheets by github.com/tushar2704
#######################################################################################################
left_main_panel()
footer()
#######################################################################################################
#End of Streamlit Magic Cheat Sheets by github.com/tushar2704
#######################################################################################################