This commit is contained in:
Dionysus 2025-02-11 02:46:01 -05:00
parent 91d016299d
commit d773bb6b0c
Signed by: acidvegas
GPG Key ID: EF4B922DB85DC9DE
10 changed files with 13 additions and 13 deletions

View File

@ -1,9 +1,9 @@
#!/usr/bin/env python3
# HTTPZ Web Scanner - Developed by acidvegas in Python (https://github.com/acidvegas/httpz)
# httpz/__init__.py
# httpz_scanner/__init__.py
from .scanner import HTTPZScanner
from .colors import Colors
__version__ = '1.0.6'
__version__ = '1.0.7'

View File

@ -1,6 +1,6 @@
#!/usr/bin/env python3
# HTTPZ Web Scanner - Developed by acidvegas in Python (https://github.com/acidvegas/httpz)
# httpz/__main__.py
# httpz_scanner/__main__.py
import asyncio
import sys

View File

@ -1,6 +1,6 @@
#!/usr/bin/env python3
# HTTPZ Web Scanner - Developed by acidvegas in Python (https://github.com/acidvegas/httpz)
# httpz/cli.py
# httpz_scanner/cli.py
import argparse
import asyncio

View File

@ -1,6 +1,6 @@
#!/usr/bin/env python3
# HTTPZ Web Scanner - Developed by acidvegas in Python (https://github.com/acidvegas/httpz)
# httpz/colors.py
# httpz_scanner/colors.py
class Colors:
'''ANSI color codes for terminal output'''

View File

@ -1,6 +1,6 @@
#!/usr/bin/env python3
# HTTPZ Web Scanner - Developed by acidvegas in Python (https://github.com/acidvegas/httpz)
# httpz/dns.py
# httpz_scanner/dns.py
import asyncio
import os

View File

@ -1,6 +1,6 @@
#!/usr/bin/env python3
# HTTPZ Web Scanner - Developed by acidvegas in Python (https://github.com/acidvegas/httpz)
# httpz/formatters.py
# httpz_scanner/formatters.py
from .colors import Colors
from .utils import human_size

View File

@ -1,6 +1,6 @@
#!/usr/bin/env python3
# HTTPZ Web Scanner - Developed by acidvegas in Python (https://github.com/acidvegas/httpz)
# httpz/parsers.py
# httpz_scanner/parsers.py
try:
import bs4

View File

@ -1,6 +1,6 @@
#!/usr/bin/env python3
# HTTPZ Web Scanner - Developed by acidvegas in Python (https://github.com/acidvegas/httpz)
# httpz/scanner.py
# httpz_scanner/scanner.py
import asyncio
import json

View File

@ -1,6 +1,6 @@
#!/usr/bin/env python3
# HTTPZ Web Scanner - Developed by acidvegas in Python (https://github.com/acidvegas/httpz)
# httpz/utils.py
# httpz_scanner/utils.py
import logging
import sys

View File

@ -8,8 +8,8 @@ with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='httpz-scanner',
version='1.0.6',
name='httpz_scanner',
version='1.0.7',
author='acidvegas',
author_email='acid.vegas@acid.vegas',
description='Hyper-fast HTTP Scraping Tool',
@ -41,7 +41,7 @@ setup(
],
entry_points={
'console_scripts': [
'httpz=httpz-scanner.__main__:cli', # Updated import path
'httpz=httpz_scanner.__main__:cli',
],
},
)