This repository provides a Python example of how to download zone files via CZDS (Centralized Zone Data Service) REST API. A detail API Specs can be found here.
There is also an example provided in Java. It can be found in this repo.
This script requires Python 3. It has been tested with Python 3.7.1.
It requires the requests
extension library. Please checkout here to see how to install it - https://github.com/requests/requests
- Make a copy of the
config.sample.json
file and name itconfig.json
- Edit
config.json
and fill in your information. - Run
python download.py
All the zone files will be saved in working-directory
/zonefiles, working-directory
is specified in config.json
,
or default to current directory if not specified in config.json
- CZDS REST API Specs - https://github.com/icann/czds-api-client-java/blob/master/docs/ICANN_CZDS_api.pdf
Contributions are welcome.
Reference Implementation in Java: https://github.com/icann/czds-api-client-java