├── .gitignore ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── gdapi.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/gdapi-python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/gdapi-python/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/gdapi-python/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/gdapi-python/HEAD/README.md -------------------------------------------------------------------------------- /gdapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/gdapi-python/HEAD/gdapi.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | argcomplete 2 | requests 3 | six 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/gdapi-python/HEAD/setup.py --------------------------------------------------------------------------------