From 61639141a07d26cac8df9ecc6d1202079cf62c0f Mon Sep 17 00:00:00 2001 From: acidvegas Date: Wed, 12 Mar 2025 21:50:07 -0400 Subject: [PATCH] Minor update --- .gitignore | 3 ++- README.md | 7 ++++++- czds_api.egg-info/PKG-INFO | 2 +- czds_api.egg-info/entry_points.txt | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 78a97cd..2db1661 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,5 @@ logs/* *.log .log. *.egg-info -dist/ \ No newline at end of file +dist/ +*.egg-info \ No newline at end of file diff --git a/README.md b/README.md index d91d381..802a7a0 100644 --- a/README.md +++ b/README.md @@ -28,19 +28,24 @@ czds [-h] [-u USERNAME] [-p PASSWORD] [-z] [-c CONCURRENCY] [-d] [-k] [-r] [-s] ``` #### Arguments +###### Basic Options | Argument | Description | Default | |-----------------------|----------------------------------------------|-------------------| | `-h`, `--help` | Show help message and exit | | | `-u`, `--username` | ICANN Username | `$CZDS_USER` | | `-p`, `--password` | ICANN Password | `$CZDS_PASS` | +| `-o`, `--output` | Output directory | Current directory | + +###### Zone Options | `-z`, `--zones` | Download zone files | | | `-c`, `--concurrency` | Number of concurrent downloads | `3` | | `-d`, `--decompress` | Decompress zone files after download | | | `-k`, `--keep` | Keep original gzip files after decompression | | + +###### Report Options | `-r`, `--report` | Download the zone stats report | | | `-s`, `--scrub` | Scrub username from the report | | | `-f`, `--format` | Report output format (csv/json) | `csv` | -| `-o`, `--output` | Output directory | Current directory | ### Environment Variables ```bash diff --git a/czds_api.egg-info/PKG-INFO b/czds_api.egg-info/PKG-INFO index c2b4d07..daa7f0f 100644 --- a/czds_api.egg-info/PKG-INFO +++ b/czds_api.egg-info/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 2.2 Name: czds-api -Version: 1.2.0 +Version: 1.2.1 Summary: ICANN API for the Centralized Zones Data Service Home-page: https://github.com/acidvegas/czds Author: acidvegas diff --git a/czds_api.egg-info/entry_points.txt b/czds_api.egg-info/entry_points.txt index e9afd74..03e46ea 100644 --- a/czds_api.egg-info/entry_points.txt +++ b/czds_api.egg-info/entry_points.txt @@ -1,2 +1,2 @@ [console_scripts] -czds = czds.__main__:main +czds = czds.__main__:cli_entry