Spaces:
Sleeping
Sleeping
WIP: Add latest trend functionality
Browse files
app.py
CHANGED
@@ -30,6 +30,7 @@ def parse_search_results(query_results: str) -> Dict[str, str]:
|
|
30 |
|
31 |
# Split the input into lines
|
32 |
lines = query_results.splitlines()
|
|
|
33 |
|
34 |
# Regex pattern to match a URL (starting with http:// or https://)
|
35 |
url_pattern = re.compile(r"^(https?://\S+)")
|
|
|
30 |
|
31 |
# Split the input into lines
|
32 |
lines = query_results.splitlines()
|
33 |
+
print(lines)
|
34 |
|
35 |
# Regex pattern to match a URL (starting with http:// or https://)
|
36 |
url_pattern = re.compile(r"^(https?://\S+)")
|