httpz

- Hyper-fast HTTP Scraping Tool
git clone git://git.acid.vegas/httpz.git
Log | Files | Refs | Archive | README | LICENSE

commit 1819c7dc48709ac99c43d3ba302bee63c545e56b
parent f7c797c851e2e126f59de3e2edfea1733653189b
Author: acidvegas <acid.vegas@acid.vegas>
Date: Tue, 11 Feb 2025 21:13:28 -0500

fuck

Diffstat:
Mhttpz_scanner/__init__.py | 4++--
Mhttpz_scanner/scanner.py | 4++--
Msetup.py | 2+-

3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/httpz_scanner/__init__.py b/httpz_scanner/__init__.py
@@ -6,4 +6,4 @@ from .scanner import HTTPZScanner
 from .colors  import Colors
 
 
-__version__ = '2.0.2'
-\ No newline at end of file
+__version__ = '2.0.3'
+\ No newline at end of file
diff --git a/httpz_scanner/scanner.py b/httpz_scanner/scanner.py
@@ -229,8 +229,8 @@ class HTTPZScanner:
             # Handle different input types
             if isinstance(input_source, str):
                 # File or stdin input
-                domain_iter = input_generator(input_source, self.shard)
-                for domain in domain_iter:
+                gen = input_generator(input_source, self.shard)
+                async for domain in gen:
                     if len(tasks) >= self.concurrent_limit:
                         done, tasks = await asyncio.wait(
                             tasks, return_when=asyncio.FIRST_COMPLETED
diff --git a/setup.py b/setup.py
@@ -10,7 +10,7 @@ with open('README.md', 'r', encoding='utf-8') as f:
 
 setup(
     name='httpz_scanner',
-    version='2.0.2',
+    version='2.0.3',
     author='acidvegas',
     author_email='acid.vegas@acid.vegas',
     description='Hyper-fast HTTP Scraping Tool',