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