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