File size: 12,462 Bytes
7fd4ede | 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 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 | import streamlit as st
import sqlite3
import pandas as pd
import asyncio
import os
import threading
import time
from dotenv import load_dotenv
load_dotenv()
from pipeline import run_pipeline, PIPELINE_TRACKER
st.set_page_config(page_title="Ops Command Center", layout="wide")
DATABASE_PATH = 'leads.db'
GLOBAL_MATRIX = {
"India (IN - West Hubs)": [
"Pune-Chakan-Pimpri (Automotive & Heavy Eng)",
"Ahmedabad-Sanand (GIDC Manufacturing Belt)",
"Surat-Hazira (Heavy Industrial & Textiles)",
"Vadodara-Ankleshwar (Chemical & Pharma Clusters)",
"Nagpur-Butibori (Logistics & MIDC Manufacturing)",
"Nashik-Aurangabad (Engineering & Tooling Hubs)",
"Mumbai-Thane-Vapi (Industrial Processing & Tech)"
],
"India (IN - South Hubs)": [
"Bangalore-Peenya (KIADB Tech & Advanced Precision)",
"Chennai-Sriperumbudur (Automotive & Electronics Assembly)",
"Coimbatore (Industrial Machinery & Textile Engineering)",
"Hosur (Heavy Manufacturing & Component Fabricators)",
"Hyderabad-Pashamylaram (Pharma & Automation Clusters)",
"Visakhapatnam-Sri City (Seaport Logistics & Special Tech Zones)"
],
"India (IN - North & Central Hubs)": [
"Gurugram-Manesar (Automotive & Core Software Integration)",
"Noida-Greater Noida (Electronics Packaging & Smart Infrastructure)",
"Faridabad-Ghaziabad (Light Engineering & Component Casting)",
"Ludhiana (Heavy Machining & Textile Manufacturing Hubs)",
"Indore-Pithampur (Automotive & Pharma Corridors)",
"Pantnagar-Haridwar (Industrial Manufacturing Estates)"
],
"India (IN - East Hubs)": [
"Jamshedpur-Bokaro (Steel, Mining Equipment & Heavy Metals)",
"Kolkata-Durgapur-Asansol (Core Industrial, Logistics & Metal Alloys)"
],
"Mexico (MX)": ["Monterrey", "Querétaro", "Ciudad Juárez", "Guadalajara", "Puebla"],
"Poland (PL)": ["Wrocław", "Poznań", "Katowice", "Kraków", "Warsaw"],
"Vietnam (VN)": ["Ho Chi Minh City", "Hanoi", "Haiphong", "Bình Dương"],
"Saudi Arabia (SA)": ["Riyadh", "Jeddah", "Dammam", "NEOM (Tabuk Region)"],
"United Arab Emirates (AE)": ["Dubai", "Abu Dhabi", "Sharjah"],
"Australia (AU)": ["Perth", "Brisbane", "Melbourne", "Sydney"],
"Malaysia (MY)": ["Penang", "Kuala Lumpur", "Johor Bahru"],
"Brazil (BR)": ["São Paulo", "Campinas", "Belo Horizonte", "Curitiba"],
"Morocco (MA)": ["Casablanca", "Tangier", "Kenitra"]
}
def inject_custom_css():
st.markdown(
"""
<style>
@media (max-width: 640px) {
.stButton > button { width: 100% !important; }
}
.grid-card, .grid-card * { color: #f1f5f9 !important; }
.grid-card a { color: #2dd4bf !important; }
.grid-card {
background-color: rgba(30, 41, 59, 0.85);
border: 1px solid #4b5563;
padding: 18px;
border-radius: 8px;
margin-bottom: 16px;
transition: all 0.2s ease;
}
.grid-card:hover {
box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}
.grid-header {
font-size: 1.4em;
font-weight: 700;
color: #ffffff !important;
margin-bottom: 8px;
border-bottom: 2px solid #4b5563;
padding-bottom: 8px;
}
.tag-pill {
display: inline-block;
background-color: #1e293b;
color: #ffffff !important;
padding: 6px 12px;
border-radius: 999px;
font-size: 0.85em;
font-weight: 600;
margin-right: 8px;
margin-bottom: 12px;
border: 1px solid #4b5563;
}
.tag-pill.live {
background-color: rgba(20, 184, 166, 0.15);
color: #2dd4bf !important;
}
</style>
""",
unsafe_allow_html=True
)
def init_db():
conn = sqlite3.connect(DATABASE_PATH)
c = conn.cursor()
c.execute('''
CREATE TABLE IF NOT EXISTS leads (
id INTEGER PRIMARY KEY AUTOINCREMENT,
company TEXT,
country TEXT,
city TEXT,
email TEXT,
status TEXT,
pitch TEXT,
industry_tier TEXT,
market_priority TEXT
)
''')
# Database Schema Self-Healing Patch
c.execute("PRAGMA table_info(leads)")
columns = [info[1] for info in c.fetchall()]
required_columns = {
"email": "TEXT",
"country": "TEXT",
"industry_tier": "TEXT",
"market_priority": "TEXT",
"website_url": "TEXT",
"phone_number": "TEXT",
"social_links": "TEXT"
}
for col, dtype in required_columns.items():
if col not in columns:
c.execute(f"ALTER TABLE leads ADD COLUMN {col} {dtype};")
conn.commit()
conn.close()
def get_pending_leads(country: str, cities: list):
"""Ghost Leak Fix: Filter strictly by the selected country and city view state."""
if not cities:
return pd.DataFrame()
conn = sqlite3.connect(DATABASE_PATH)
placeholders = ','.join(['?'] * len(cities))
query = f"SELECT * FROM leads WHERE status='PENDING_REVIEW' AND country=? AND city IN ({placeholders})"
params = [country] + cities
df = pd.read_sql_query(query, conn, params=params)
conn.close()
return df
def discard_lead(lead_id):
conn = sqlite3.connect(DATABASE_PATH)
c = conn.cursor()
c.execute("UPDATE leads SET status = 'DISCARDED' WHERE id = ?", (lead_id,))
conn.commit()
conn.close()
def main():
inject_custom_css()
init_db()
st.title("🌐 Live Operations Engine: Emerging Markets")
st.markdown("**(Powered by DuckDuckGo X-Ray Engine & Deep Domain Crawling)**")
if not os.environ.get("GEMINI_API_KEY"):
st.warning("⚠️ GEMINI_API_KEY not found in environment.")
st.header("🎛️ Live Pipeline Control Panel")
with st.expander("Web Scraper Configuration Engine", expanded=True):
col1, col2 = st.columns(2)
with col1:
market_priority = st.selectbox("Market Priority", ["International P1", "National P2"])
# Dynamic Country Filtering Rule
if market_priority == "International P1":
country_options = [k for k in GLOBAL_MATRIX.keys() if "India" not in k]
else:
country_options = [k for k in GLOBAL_MATRIX.keys() if "India" in k]
selected_country = st.selectbox("Target Emerging Country", country_options)
with col2:
available_cities = GLOBAL_MATRIX[selected_country]
select_all = st.checkbox("Select All Cities", value=True)
if select_all:
selected_cities = available_cities
st.multiselect("Target Hubs", available_cities, default=available_cities, disabled=True)
else:
selected_cities = st.multiselect("Target Hubs", available_cities, default=[])
if st.button("🚀 Execute DuckDuckGo X-Ray Search", type="primary", disabled=PIPELINE_TRACKER["is_running"]):
if selected_cities:
conn = sqlite3.connect(DATABASE_PATH)
c = conn.cursor()
# Workspace Lead Isolation
c.execute("DELETE FROM leads WHERE status = 'PENDING_REVIEW';")
conn.commit()
conn.close()
def bg_run(priority, country, cities):
asyncio.run(run_pipeline(priority, country, cities))
t = threading.Thread(target=bg_run, args=(market_priority, selected_country, selected_cities))
try:
from streamlit.runtime.scriptrunner import add_script_run_ctx
add_script_run_ctx(t)
except ImportError:
pass
t.start()
st.rerun()
else:
st.warning("Please select at least one target hub.")
if PIPELINE_TRACKER["is_running"]:
with st.spinner("Pipeline is running in background. You can interact with the dashboard..."):
time.sleep(1)
st.rerun()
elif PIPELINE_TRACKER["result"] is not None:
count = PIPELINE_TRACKER["result"]
if count > 0:
st.success(f"Pipeline complete! Digested {count} REAL verified enterprise leads.")
else:
st.warning("No leads found for these hubs. This can happen if domains are completely locked or contacts are hidden.")
PIPELINE_TRACKER["result"] = None
st.divider()
st.header("📋 Operational Review Queue (Live Data)")
# Filter only based on what's active in the UI to fix Ghost Leaks
leads_df = get_pending_leads(selected_country, selected_cities)
if leads_df.empty:
st.info("Queue is empty for this region. Execute the Live DDG X-Ray Search above.")
else:
total_leads = len(leads_df)
st.markdown(f"**Total Pending Verification in View:** {total_leads}")
items_per_page = 10
total_pages = max(1, (total_leads - 1) // items_per_page + 1)
if total_pages > 1:
page = st.number_input("Pagination (Page)", min_value=1, max_value=total_pages, value=1, step=1)
start_idx = (page - 1) * items_per_page
end_idx = start_idx + items_per_page
leads_to_display = leads_df.iloc[start_idx:end_idx]
else:
leads_to_display = leads_df
for index, row in leads_to_display.iterrows():
st.markdown('<div class="grid-card">', unsafe_allow_html=True)
st.markdown(f"<div class='grid-header'>🏢 {row['company']} | {row['city']}, {row.get('country', 'Unknown')}</div>", unsafe_allow_html=True)
website = row.get('website_url', 'N/A')
phone = row.get('phone_number', 'N/A')
socials = row.get('social_links', 'N/A')
tags_html = '<div style="margin-bottom: 15px;">'
if website and website != 'N/A':
tags_html += f'<span class="tag-pill live">🌐 {website}</span>'
if phone and phone != 'N/A':
tags_html += f'<span class="tag-pill">📞 {phone}</span>'
if socials and socials != 'N/A':
tags_html += f'<span class="tag-pill">🔗 {socials}</span>'
tags_html += '</div>'
st.markdown(tags_html, unsafe_allow_html=True)
email_val = row.get('email', '')
if email_val and str(email_val).startswith('http'):
st.link_button("🌐 Open Corporate Contact Form", email_val)
else:
st.markdown(f"**✉️ Verified Target Email:** {email_val}")
pitch_key = f"pitch_{row['id']}"
st.text_area(
"Contextual AI Generated Pitch (Editable)",
value=row['pitch'],
key=pitch_key,
height=220
)
col1, col2, _ = st.columns([1, 1, 4])
with col1:
if st.button("💾 Approve & Save Lead", key=f"approve_{row['id']}", type="primary", use_container_width=True):
final_pitch = st.session_state[pitch_key]
conn = sqlite3.connect(DATABASE_PATH)
c = conn.cursor()
c.execute("UPDATE leads SET pitch = ?, status = 'APPROVED' WHERE id = ?", (final_pitch, row['id']))
conn.commit()
conn.close()
st.success(f"Successfully saved lead data for {row['company']}.")
st.rerun()
with col2:
if st.button("❌ Discard", key=f"discard_{row['id']}", use_container_width=True):
discard_lead(row['id'])
st.error(f"Lead {row['company']} discarded from queue.")
st.rerun()
st.markdown('</div>', unsafe_allow_html=True)
if __name__ == "__main__":
main()
|