11 lines
311 B
Python
11 lines
311 B
Python
#!/usr/bin/env python3
|
|
# ICANN API for the Centralized Zones Data Service - developed by acidvegas (https://git.acid.vegas/czds)
|
|
# czds/__init__.py
|
|
|
|
from .client import CZDS
|
|
|
|
|
|
__version__ = '1.2.6'
|
|
__author__ = 'acidvegas'
|
|
__email__ = 'acid.vegas@acid.vegas'
|
|
__github__ = 'https://github.com/acidvegas/czds' |