2022-03-23 20:40:00 +00:00
|
|
|
""" Sherlock Module
|
2019-10-27 03:42:03 +00:00
|
|
|
|
|
|
|
This module contains the main logic to search for usernames at social
|
|
|
|
networks.
|
2022-03-23 20:40:00 +00:00
|
|
|
|
2019-10-27 03:42:03 +00:00
|
|
|
"""
|
2024-05-18 00:57:37 +00:00
|
|
|
|
2024-07-01 02:32:31 +00:00
|
|
|
# This variable is only used to check for ImportErrors induced by users running as script rather than as module or package
|
2024-07-08 05:36:24 +00:00
|
|
|
import_error_test_var = None
|
2024-07-01 02:32:31 +00:00
|
|
|
|
2024-05-18 00:57:37 +00:00
|
|
|
__shortname__ = "Sherlock"
|
|
|
|
__longname__ = "Sherlock: Find Usernames Across Social Networks"
|
2024-06-25 04:15:32 +00:00
|
|
|
__version__ = "0.15.0"
|
2024-07-01 00:45:30 +00:00
|
|
|
|
2024-07-08 05:30:32 +00:00
|
|
|
forge_api_latest_release = "https://api.github.com/repos/sherlock-project/sherlock/releases/latest"
|