From cb14ccbaafca42e31b9f7d1b8178a6afd0d31147 Mon Sep 17 00:00:00 2001 From: nour Date: Sat, 18 Oct 2025 15:21:36 +0300 Subject: [PATCH] Make urls clickable when saved to excel --- sherlock_project/sherlock.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sherlock_project/sherlock.py b/sherlock_project/sherlock.py index 75b3e3d7..f78d4b8c 100644 --- a/sherlock_project/sherlock.py +++ b/sherlock_project/sherlock.py @@ -925,8 +925,8 @@ def main(): { "username": usernames, "name": names, - "url_main": url_main, - "url_user": url_user, + "url_main": [f'=HYPERLINK(\"{u}\")' for u in url_main], + "url_user": [f'=HYPERLINK(\"{u}\")' for u in url_user], "exists": exists, "http_status": http_status, "response_time_s": response_time_s,