Update app.py
Browse files
app.py
CHANGED
|
@@ -302,9 +302,18 @@ def search_website_contacts(website_url, max_results=10):
|
|
| 302 |
return f"Error searching website: {str(e)}", ""
|
| 303 |
|
| 304 |
def get_all_available_websites():
|
| 305 |
-
"""
|
| 306 |
-
|
| 307 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 308 |
|
| 309 |
# Custom CSS
|
| 310 |
custom_css = """
|
|
|
|
| 302 |
return f"Error searching website: {str(e)}", ""
|
| 303 |
|
| 304 |
def get_all_available_websites():
|
| 305 |
+
"""Return a static list of example websites for display"""
|
| 306 |
+
return "\n".join([
|
| 307 |
+
"kwekelcompanies.com",
|
| 308 |
+
"techflowsolutions.com",
|
| 309 |
+
"greenleafconsult.com",
|
| 310 |
+
"blueskymarketing.net",
|
| 311 |
+
"quantumdynamics.org",
|
| 312 |
+
"stellarlogistics.biz",
|
| 313 |
+
"nexusfinancial.pro",
|
| 314 |
+
"horizonhealth.care",
|
| 315 |
+
"phoenixmfg.com"
|
| 316 |
+
])
|
| 317 |
|
| 318 |
# Custom CSS
|
| 319 |
custom_css = """
|