updated version and fixed assigned headers

This commit is contained in:
Dionysus 2025-03-21 20:06:36 -04:00
parent 2b7a0c5229
commit 6cd0d267d1
Signed by: acidvegas
GPG Key ID: EF4B922DB85DC9DE
3 changed files with 4 additions and 3 deletions

View File

@ -5,7 +5,7 @@
from .client import CZDS
__version__ = '1.2.4'
__version__ = '1.2.5'
__author__ = 'acidvegas'
__email__ = 'acid.vegas@acid.vegas'
__github__ = 'https://github.com/acidvegas/czds'

View File

@ -64,6 +64,7 @@ class CZDS:
result = await response.json()
logging.info('Successfully authenticated with ICANN API')
self.headers = {'Authorization': f'Bearer {result["accessToken"]}'}
return result['accessToken']
except Exception as e:
@ -83,7 +84,7 @@ class CZDS:
raise Exception(error_msg)
links = await response.json()
logging.info(f'Successfully fetched {len(links)} zone links')
logging.info(f'Successfully fetched {len(links):,} zone links')
return links

View File

@ -11,7 +11,7 @@ with open('README.md', 'r', encoding='utf-8') as fh:
setup(
name='czds-api',
version='1.2.4',
version='1.2.5',
author='acidvegas',
author_email='acid.vegas@acid.vegas',
description='ICANN API for the Centralized Zones Data Service',