You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
559 B
23 lines
559 B
5 years ago
|
#! /usr/bin/env python3
|
||
|
|
||
|
"""
|
||
|
Sherlock: Find Usernames Across Social Networks Module
|
||
|
|
||
|
This module contains the main logic to search for usernames at social
|
||
|
networks.
|
||
|
"""
|
||
|
|
||
4 years ago
|
import sys
|
||
5 years ago
|
|
||
|
|
||
|
if __name__ == "__main__":
|
||
4 years ago
|
# Check if the user is using the correct version of Python
|
||
4 years ago
|
python_version = sys.version.split()[0]
|
||
4 years ago
|
|
||
7 months ago
|
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.")
|
||
4 years ago
|
sys.exit(1)
|
||
|
|
||
6 months ago
|
from sherlock_project import sherlock
|
||
5 years ago
|
sherlock.main()
|