예제 #1
0
#! /usr/bin/env python3
"""
Sherlock: Find Usernames Across Social Networks Module

This module contains the main logic to search for usernames at social
networks.
"""

import sys

if __name__ == "__main__":
    # Checking if the user is using the correct version of Python
    # Reference:
    #  If Python version is 3.6.5
    #               major --^
    #               minor ----^
    #               micro ------^
    major = sys.version_info[0]
    minor = sys.version_info[1]

    if major != 3 or major == 3 and minor < 6:
        python_version = str(major) + "." + str(minor) + "." + str(
            sys.version_info[2])
        print(
            "Sherlock requires Python 3.6+\nYou are using Python %s, which is not supported by Sherlock"
            % (python_version))
        sys.exit(1)

    import sherlock
    sherlock.main()
예제 #2
0
__version__ = 0.1
from sherlock import main
main()