mirror of
https://github.com/laramies/theHarvester.git
synced 2024-11-10 17:13:07 +08:00
cd678f2acf
Improves the readability and consistency of the codebase by replacing double quotes with single quotes where applicable. Also refactors several `if` statements and list/set comprehensions for brevity. The update does not affect functionality or performance. Unnecessary module imports were also removed for optimization.
12 lines
322 B
Python
Executable file
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()
|