httpz- Hyper-fast HTTP Scraping Tool |
git clone git://git.acid.vegas/httpz.git |
Log | Files | Refs | Archive | README | LICENSE |
__main__.py (310B)
1 #!/usr/bin/env python3 2 # HTTPZ Web Scanner - Developed by acidvegas in Python (https://github.com/acidvegas/httpz) 3 # httpz_scanner/__main__.py 4 5 import asyncio 6 import sys 7 8 from .cli import main 9 10 11 12 if __name__ == '__main__': 13 try: 14 asyncio.run(main()) 15 except KeyboardInterrupt: 16 sys.exit(1)