2019-10-27 03:42:03 +00:00
|
|
|
#! /usr/bin/env python3
|
|
|
|
|
|
|
|
"""
|
|
|
|
Sherlock: Find Usernames Across Social Networks Module
|
|
|
|
|
|
|
|
This module contains the main logic to search for usernames at social
|
|
|
|
networks.
|
|
|
|
"""
|
|
|
|
|
2020-07-26 08:56:08 +00:00
|
|
|
import sys
|
2019-10-27 03:42:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2021-04-27 05:25:04 +00:00
|
|
|
# Check if the user is using the correct version of Python
|
2021-04-27 04:26:21 +00:00
|
|
|
python_version = sys.version.split()[0]
|
2020-07-26 08:56:08 +00:00
|
|
|
|
2024-05-18 00:57:37 +00:00
|
|
|
if sys.version_info < (3, 8):
|
|
|
|
print(f"Sherlock requires Python 3.8+\nYou are using Python {python_version}, which is not supported by Sherlock.")
|
2020-07-26 08:56:08 +00:00
|
|
|
sys.exit(1)
|
|
|
|
|
2024-06-24 20:40:03 +00:00
|
|
|
from sherlock_project import sherlock
|
2019-10-27 03:42:03 +00:00
|
|
|
sherlock.main()
|