2019-10-26 22:42:03 -05: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 10:56:08 +02:00
|
|
|
import sys
|
2019-10-26 22:42:03 -05:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2021-04-26 22:25:04 -07:00
|
|
|
# Check if the user is using the correct version of Python
|
2021-04-26 21:26:21 -07:00
|
|
|
python_version = sys.version.split()[0]
|
2020-07-26 10:56:08 +02:00
|
|
|
|
2024-05-17 20:57:37 -04: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 10:56:08 +02:00
|
|
|
sys.exit(1)
|
|
|
|
|
2024-06-24 16:40:03 -04:00
|
|
|
from sherlock_project import sherlock
|
2019-10-26 22:42:03 -05:00
|
|
|
sherlock.main()
|