-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
36 lines (30 loc) · 823 Bytes
/
Copy pathmain.py
File metadata and controls
36 lines (30 loc) · 823 Bytes
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
import streamlit as st
# Configure page
st.set_page_config(
page_title="Deepsint",
layout="wide",
initial_sidebar_state="expanded"
)
# Import page modules
from pages.search import show_search_page
from pages.results import show_results_page
# Sidebar navigation
st.sidebar.title("🔍 Deepsint")
st.sidebar.markdown("---")
# Navigation menu
page = st.sidebar.selectbox(
"Navigate to:",
["🔍 Search", "📊 Results"],
index=0
)
st.sidebar.markdown("---")
st.sidebar.markdown("### About")
st.sidebar.info(
"Deepsint is an OSINT tool that uses Blackbird to find social media profiles "
"and processes them through advanced profiling and clustering algorithms."
)
# Main content area
if page == "🔍 Search":
show_search_page()
elif page == "📊 Results":
show_results_page()