├── .github └── workflows │ ├── python-publish.yml │ └── run-unittest.yml ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── extra └── pz-autocompletion.bash ├── pz ├── setup.cfg ├── setup.py └── tests.py /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/pz/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.github/workflows/run-unittest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/pz/HEAD/.github/workflows/run-unittest.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/pz/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/pz/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/pz/HEAD/README.md -------------------------------------------------------------------------------- /extra/pz-autocompletion.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/pz/HEAD/extra/pz-autocompletion.bash -------------------------------------------------------------------------------- /pz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/pz/HEAD/pz -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/pz/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/pz/HEAD/setup.py -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/pz/HEAD/tests.py --------------------------------------------------------------------------------