httpz- Hyper-fast HTTP Scraping Tool |
git clone git://git.acid.vegas/httpz.git |
Log | Files | Refs | Archive | README | LICENSE |
colors.py (610B)
1 #!/usr/bin/env python3 2 # HTTPZ Web Scanner - Developed by acidvegas in Python (https://github.com/acidvegas/httpz) 3 # httpz_scanner/colors.py 4 5 class Colors: 6 '''ANSI color codes for terminal output''' 7 8 HEADER = '\033[95m' 9 BLUE = '\033[94m' 10 GREEN = '\033[92m' 11 YELLOW = '\033[93m' 12 RED = '\033[91m' 13 BOLD = '\033[1m' 14 UNDERLINE = '\033[4m' 15 RESET = '\033[0m' 16 PURPLE = '\033[35m' 17 LIGHT_RED = '\033[38;5;203m' 18 DARK_GREEN = '\033[38;5;22m' 19 PINK = '\033[38;5;198m' 20 GRAY = '\033[90m' 21 CYAN = '\033[96m'