Updated version
This commit is contained in:
parent
551df89f3f
commit
e9795a0177
@ -2,7 +2,7 @@
|
|||||||
# ICANN API for the Centralized Zones Data Service - developed by acidvegas (https://git.acid.vegas/czds)
|
# ICANN API for the Centralized Zones Data Service - developed by acidvegas (https://git.acid.vegas/czds)
|
||||||
# czds/__init__.py
|
# czds/__init__.py
|
||||||
|
|
||||||
__version__ = '1.3.4'
|
__version__ = '1.3.5'
|
||||||
__author__ = 'acidvegas'
|
__author__ = 'acidvegas'
|
||||||
__email__ = 'acid.vegas@acid.vegas'
|
__email__ = 'acid.vegas@acid.vegas'
|
||||||
__github__ = 'https://github.com/acidvegas/czds'
|
__github__ = 'https://github.com/acidvegas/czds'
|
@ -34,24 +34,38 @@ async def gzip_decompress(filepath: str, cleanup: bool = True):
|
|||||||
output_path = filepath[:-3]
|
output_path = filepath[:-3]
|
||||||
|
|
||||||
# Set the chunk size to 25MB
|
# Set the chunk size to 25MB
|
||||||
chunk_size = 25 * 1024 * 1024
|
chunk_size = 100 * 1024 * 1024
|
||||||
|
|
||||||
# Create progress bar for decompression
|
# Use a decompression object for better memory efficiency
|
||||||
|
decompressor = gzip.decompressobj()
|
||||||
|
|
||||||
|
# Create progress bar
|
||||||
with tqdm(total=original_size, unit='B', unit_scale=True, desc=f'Decompressing {os.path.basename(filepath)}', leave=False) as pbar:
|
with tqdm(total=original_size, unit='B', unit_scale=True, desc=f'Decompressing {os.path.basename(filepath)}', leave=False) as pbar:
|
||||||
# Decompress the file
|
# Open the input and output files
|
||||||
with gzip.open(filepath, 'rb') as gz:
|
async with aiofiles.open(filepath, 'rb') as f_in:
|
||||||
async with aiofiles.open(output_path, 'wb') as f_out:
|
async with aiofiles.open(output_path, 'wb') as f_out:
|
||||||
while True:
|
while True:
|
||||||
# Read the next chunk
|
# Read compressed chunk
|
||||||
chunk = gz.read(chunk_size)
|
chunk = await f_in.read(chunk_size)
|
||||||
|
|
||||||
# If the chunk is empty, break
|
# If the chunk is empty, break
|
||||||
if not chunk:
|
if not chunk:
|
||||||
break
|
break
|
||||||
|
|
||||||
|
# Decompress chunk
|
||||||
|
decompressed = decompressor.decompress(chunk)
|
||||||
|
|
||||||
# Write the chunk to the output file
|
# If the decompressed chunk is not empty, write it to the output file
|
||||||
await f_out.write(chunk)
|
if decompressed:
|
||||||
|
await f_out.write(decompressed)
|
||||||
|
|
||||||
|
# Update the progress bar
|
||||||
pbar.update(len(chunk))
|
pbar.update(len(chunk))
|
||||||
|
|
||||||
|
# Write any remaining data
|
||||||
|
remaining = decompressor.flush()
|
||||||
|
if remaining:
|
||||||
|
await f_out.write(remaining)
|
||||||
|
|
||||||
# Get the decompressed size of the file
|
# Get the decompressed size of the file
|
||||||
decompressed_size = os.path.getsize(output_path)
|
decompressed_size = os.path.getsize(output_path)
|
||||||
|
2
setup.py
2
setup.py
@ -11,7 +11,7 @@ with open('README.md', 'r', encoding='utf-8') as fh:
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='czds-api',
|
name='czds-api',
|
||||||
version='1.3.4',
|
version='1.3.5',
|
||||||
author='acidvegas',
|
author='acidvegas',
|
||||||
author_email='acid.vegas@acid.vegas',
|
author_email='acid.vegas@acid.vegas',
|
||||||
description='ICANN API for the Centralized Zones Data Service',
|
description='ICANN API for the Centralized Zones Data Service',
|
||||||
|
Loading…
Reference in New Issue
Block a user