diff --git a/httpz-scanner/__init__.py b/httpz_scanner/__init__.py similarity index 78% rename from httpz-scanner/__init__.py rename to httpz_scanner/__init__.py index dfea0d2..b93d93a 100644 --- a/httpz-scanner/__init__.py +++ b/httpz_scanner/__init__.py @@ -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' \ No newline at end of file +__version__ = '1.0.7' \ No newline at end of file diff --git a/httpz-scanner/__main__.py b/httpz_scanner/__main__.py similarity index 84% rename from httpz-scanner/__main__.py rename to httpz_scanner/__main__.py index dcf35da..bc937a7 100644 --- a/httpz-scanner/__main__.py +++ b/httpz_scanner/__main__.py @@ -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 diff --git a/httpz-scanner/cli.py b/httpz_scanner/cli.py similarity index 99% rename from httpz-scanner/cli.py rename to httpz_scanner/cli.py index 92e4800..f6f3a27 100644 --- a/httpz-scanner/cli.py +++ b/httpz_scanner/cli.py @@ -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 diff --git a/httpz-scanner/colors.py b/httpz_scanner/colors.py similarity index 89% rename from httpz-scanner/colors.py rename to httpz_scanner/colors.py index 0aa7828..b5dbd41 100644 --- a/httpz-scanner/colors.py +++ b/httpz_scanner/colors.py @@ -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''' diff --git a/httpz-scanner/dns.py b/httpz_scanner/dns.py similarity index 99% rename from httpz-scanner/dns.py rename to httpz_scanner/dns.py index 1e7fc8b..769daf7 100644 --- a/httpz-scanner/dns.py +++ b/httpz_scanner/dns.py @@ -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 diff --git a/httpz-scanner/formatters.py b/httpz_scanner/formatters.py similarity index 98% rename from httpz-scanner/formatters.py rename to httpz_scanner/formatters.py index b0ec4c2..5e4a2ae 100644 --- a/httpz-scanner/formatters.py +++ b/httpz_scanner/formatters.py @@ -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 diff --git a/httpz-scanner/parsers.py b/httpz_scanner/parsers.py similarity index 99% rename from httpz-scanner/parsers.py rename to httpz_scanner/parsers.py index 9feda4e..387efe0 100644 --- a/httpz-scanner/parsers.py +++ b/httpz_scanner/parsers.py @@ -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 diff --git a/httpz-scanner/scanner.py b/httpz_scanner/scanner.py similarity index 99% rename from httpz-scanner/scanner.py rename to httpz_scanner/scanner.py index 71362f9..c64a890 100644 --- a/httpz-scanner/scanner.py +++ b/httpz_scanner/scanner.py @@ -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 diff --git a/httpz-scanner/utils.py b/httpz_scanner/utils.py similarity index 99% rename from httpz-scanner/utils.py rename to httpz_scanner/utils.py index e1dcf90..f7266cb 100644 --- a/httpz-scanner/utils.py +++ b/httpz_scanner/utils.py @@ -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 diff --git a/setup.py b/setup.py index c1752a3..b484dbd 100644 --- a/setup.py +++ b/setup.py @@ -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', ], }, ) \ No newline at end of file