Merge pull request #2695 from simplyNour/Bug/urls-are-not-clickable-in-excel-file

Make urls clickable when saved to excel
This commit is contained in:
Paul Pfeister 2025-10-23 16:25:17 -07:00 committed by GitHub
commit 6c0c273a0b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -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,