theHarvester/theHarvester.py
Branch Vincent 4d825aaf33
build: migrate to pep517 backend (#1505)
* build: migrate to pep517 backend

* test loading config files
2023-10-08 19:45:23 +01:00

12 lines
322 B
Python
Executable file

#!/usr/bin/env python3
# Note: This script runs theHarvester
import sys
from theHarvester.theHarvester import main
if sys.version_info.major < 3 or sys.version_info.minor < 9:
print("\033[93m[!] Make sure you have Python 3.9+ installed, quitting.\n\n \033[0m")
sys.exit(1)
if __name__ == "__main__":
main()