-
Notifications
You must be signed in to change notification settings - Fork 0
/
Home.py
48 lines (37 loc) · 2.06 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
##© 2023 Tushar Aggarwal. All rights reserved.
##SummarizeIt
#######################################################################################################
#Source is hidden, and avaliable on request only contact at infor@tushar-aggarwal.com
#######################################################################################################
#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 SummarizeIt by github.com/tushar2704
#######################################################################################################
# main_title()
#######################################################################################################
#Page Config of SummarizeIt by github.com/tushar2704
#######################################################################################################
# custom_style()
#######################################################################################################
#Body of SummarizeIt by github.com/tushar2704
#######################################################################################################
# page_header('''
# #### SummarizeLit''')
#######################################################################################################
#End of SummarizeIt by github.com/tushar2704
#######################################################################################################