sherlock/sherlock_project/__init__.py

16 lines
485 B
Python
Raw Normal View History

2022-03-23 22:40:00 +02:00
""" Sherlock Module
This module contains the main logic to search for usernames at social
networks.
2022-03-23 22:40:00 +02:00
"""
2024-05-17 20:57:37 -04: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 01:36:24 -04:00
import_error_test_var = None
2024-05-17 20:57:37 -04:00
__shortname__ = "Sherlock"
__longname__ = "Sherlock: Find Usernames Across Social Networks"
2024-06-25 00:15:32 -04:00
__version__ = "0.15.0"
2024-06-30 20:45:30 -04:00
2024-07-08 01:30:32 -04:00
forge_api_latest_release = "https://api.github.com/repos/sherlock-project/sherlock/releases/latest"