-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathHome.py
59 lines (40 loc) · 2.34 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
##© 2023 Tushar Aggarwal. All rights reserved.
##Green Sights
#######################################################################################################
#Source is hidden, and avaliable on request only contact at infor@tushar-aggarwal.com or in my upcoming book
#######################################################################################################
#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")
import os
#######################################################################################################
#Importing from SRC
#######################################################################################################
#######################################################################################################
#Header of GreenSights by github.com/tushar2704
#######################################################################################################
# main_title()
#######################################################################################################
#Page Config of GreenSights by github.com/tushar2704
#######################################################################################################
# custom_style()
#######################################################################################################
#Body of GreenSights by github.com/tushar2704
#######################################################################################################
# page_header('''
# #### Green Sights''')
#######################################################################################################
#End of GreenSights by github.com/tushar2704
#######################################################################################################
#######################################################################################################
#End of GreenSights by github.com/tushar2704
#######################################################################################################