mirror of
https://github.com/mxrch/GHunt.git
synced 2025-12-22 13:47:07 +00:00
19 lines
488 B
Python
19 lines
488 B
Python
import os
|
|
import sys
|
|
|
|
|
|
def main():
|
|
version = sys.version_info
|
|
if (version < (3, 10)):
|
|
print('[-] GHunt only works with Python 3.10+.')
|
|
print(f'Your current Python version : {version.major}.{version.minor}.{version.micro}')
|
|
sys.exit(os.EX_SOFTWARE)
|
|
|
|
from ghunt.cli import parse_and_run
|
|
from ghunt.helpers.banner import show_banner
|
|
from ghunt.helpers.utils import show_version
|
|
|
|
show_banner()
|
|
show_version()
|
|
print()
|
|
parse_and_run() |