Because github has no IPv6
Find a file
Coder4 b8f178ba25
Add stream flag to avoid Memory Error
If not add stream flag, large file will be total load into memory, which cause MemoryError on small RAM server.
2019-02-15 17:40:29 +08:00
.gitignore Initial version 2018-12-06 19:09:12 -08:00
config.sample.json Change the URLs to production in the config.sample.json 2019-01-31 16:18:45 -08:00
do_authentication.py Initial version 2018-12-06 19:09:12 -08:00
do_http_get.py Add stream flag to avoid Memory Error 2019-02-15 17:40:29 +08:00
download.py Print out the time spent to download all the zone files. 2018-12-08 00:13:10 -08:00
LICENSE Initial version 2018-12-06 19:09:12 -08:00
NOTICE Initial version 2018-12-06 19:09:12 -08:00
README.md Update README 2019-01-23 12:19:44 -08:00

CZDS API Client in Python

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.

Installation

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

Run

  1. Make a copy of the config.sample.json file and name it config.json
  2. Edit config.json and fill in your information.
  3. 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

Documentation

Contributing

Contributions are welcome.

Other

Reference Implementation in Java: https://github.com/icann/czds-api-client-java