Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created November 2, 2019 01:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/08dab732f5fba524d2ad1f37da481ec3 to your computer and use it in GitHub Desktop.
Save ryantm/08dab732f5fba524d2ad1f37da481ec3 to your computer and use it in GitHub Desktop.
/nix/store/37dhkvl1snjj49gd9yh7g1wsqf98l5q8-gandi-cli-1.5
├── bin
│   └── gandi
├── lib
│   └── python3.7
│   └── site-packages
│   ├── gandi
│   │   └── cli
│   │   ├── commands
│   │   │   ├── account.py
│   │   │   ├── certificate.py
│   │   │   ├── certstore.py
│   │   │   ├── config.py
│   │   │   ├── contact.py
│   │   │   ├── disk.py
│   │   │   ├── dns.py
│   │   │   ├── dnssec.py
│   │   │   ├── docker.py
│   │   │   ├── domain.py
│   │   │   ├── forward.py
│   │   │   ├── __init__.py
│   │   │   ├── ip.py
│   │   │   ├── mail.py
│   │   │   ├── oper.py
│   │   │   ├── paas.py
│   │   │   ├── __pycache__
│   │   │   │   ├── account.cpython-37.pyc
│   │   │   │   ├── certificate.cpython-37.pyc
│   │   │   │   ├── certstore.cpython-37.pyc
│   │   │   │   ├── config.cpython-37.pyc
│   │   │   │   ├── contact.cpython-37.pyc
│   │   │   │   ├── disk.cpython-37.pyc
│   │   │   │   ├── dns.cpython-37.pyc
│   │   │   │   ├── dnssec.cpython-37.pyc
│   │   │   │   ├── docker.cpython-37.pyc
│   │   │   │   ├── domain.cpython-37.pyc
│   │   │   │   ├── forward.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── ip.cpython-37.pyc
│   │   │   │   ├── mail.cpython-37.pyc
│   │   │   │   ├── oper.cpython-37.pyc
│   │   │   │   ├── paas.cpython-37.pyc
│   │   │   │   ├── record.cpython-37.pyc
│   │   │   │   ├── root.cpython-37.pyc
│   │   │   │   ├── snapshotprofile.cpython-37.pyc
│   │   │   │   ├── sshkey.cpython-37.pyc
│   │   │   │   ├── vhost.cpython-37.pyc
│   │   │   │   ├── vlan.cpython-37.pyc
│   │   │   │   ├── vm.cpython-37.pyc
│   │   │   │   └── webacc.cpython-37.pyc
│   │   │   ├── record.py
│   │   │   ├── root.py
│   │   │   ├── snapshotprofile.py
│   │   │   ├── sshkey.py
│   │   │   ├── vhost.py
│   │   │   ├── vlan.py
│   │   │   ├── vm.py
│   │   │   └── webacc.py
│   │   ├── core
│   │   │   ├── base.py
│   │   │   ├── client.py
│   │   │   ├── cli.py
│   │   │   ├── conf.py
│   │   │   ├── __init__.py
│   │   │   ├── params.py
│   │   │   ├── __pycache__
│   │   │   │   ├── base.cpython-37.pyc
│   │   │   │   ├── cli.cpython-37.pyc
│   │   │   │   ├── client.cpython-37.pyc
│   │   │   │   ├── conf.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── params.cpython-37.pyc
│   │   │   └── utils
│   │   │   ├── ascii_sparks.py
│   │   │   ├── __init__.py
│   │   │   ├── password.py
│   │   │   ├── __pycache__
│   │   │   │   ├── ascii_sparks.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── password.cpython-37.pyc
│   │   │   │   ├── size.cpython-37.pyc
│   │   │   │   ├── unixpipe.cpython-37.pyc
│   │   │   │   └── xmlrpc.cpython-37.pyc
│   │   │   ├── size.py
│   │   │   ├── unixpipe.py
│   │   │   └── xmlrpc.py
│   │   ├── __init__.py
│   │   ├── __main__.py
│   │   ├── modules
│   │   │   ├── account.py
│   │   │   ├── api.py
│   │   │   ├── cert.py
│   │   │   ├── contact.py
│   │   │   ├── datacenter.py
│   │   │   ├── disk.py
│   │   │   ├── dns.py
│   │   │   ├── dnssec.py
│   │   │   ├── docker.py
│   │   │   ├── domain.py
│   │   │   ├── forward.py
│   │   │   ├── hostedcert.py
│   │   │   ├── iaas.py
│   │   │   ├── __init__.py
│   │   │   ├── mail.py
│   │   │   ├── metric.py
│   │   │   ├── network.py
│   │   │   ├── oper.py
│   │   │   ├── paas.py
│   │   │   ├── __pycache__
│   │   │   │   ├── account.cpython-37.pyc
│   │   │   │   ├── api.cpython-37.pyc
│   │   │   │   ├── cert.cpython-37.pyc
│   │   │   │   ├── contact.cpython-37.pyc
│   │   │   │   ├── datacenter.cpython-37.pyc
│   │   │   │   ├── disk.cpython-37.pyc
│   │   │   │   ├── dns.cpython-37.pyc
│   │   │   │   ├── dnssec.cpython-37.pyc
│   │   │   │   ├── docker.cpython-37.pyc
│   │   │   │   ├── domain.cpython-37.pyc
│   │   │   │   ├── forward.cpython-37.pyc
│   │   │   │   ├── hostedcert.cpython-37.pyc
│   │   │   │   ├── iaas.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── mail.cpython-37.pyc
│   │   │   │   ├── metric.cpython-37.pyc
│   │   │   │   ├── network.cpython-37.pyc
│   │   │   │   ├── oper.cpython-37.pyc
│   │   │   │   ├── paas.cpython-37.pyc
│   │   │   │   ├── record.cpython-37.pyc
│   │   │   │   ├── snapshotprofile.cpython-37.pyc
│   │   │   │   ├── sshkey.cpython-37.pyc
│   │   │   │   ├── status.cpython-37.pyc
│   │   │   │   ├── vhost.cpython-37.pyc
│   │   │   │   └── webacc.cpython-37.pyc
│   │   │   ├── record.py
│   │   │   ├── snapshotprofile.py
│   │   │   ├── sshkey.py
│   │   │   ├── status.py
│   │   │   ├── vhost.py
│   │   │   └── webacc.py
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   └── __main__.cpython-37.pyc
│   │   └── tests
│   │   ├── commands
│   │   │   ├── base.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── base.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_account.cpython-37.pyc
│   │   │   │   ├── test_certificate.cpython-37.pyc
│   │   │   │   ├── test_certstore.cpython-37.pyc
│   │   │   │   ├── test_config.cpython-37.pyc
│   │   │   │   ├── test_contact.cpython-37.pyc
│   │   │   │   ├── test_disk.cpython-37.pyc
│   │   │   │   ├── test_dns.cpython-37.pyc
│   │   │   │   ├── test_dnssec.cpython-37.pyc
│   │   │   │   ├── test_domain.cpython-37.pyc
│   │   │   │   ├── test_forward.cpython-37.pyc
│   │   │   │   ├── test_ip.cpython-37.pyc
│   │   │   │   ├── test_mail.cpython-37.pyc
│   │   │   │   ├── test_oper.cpython-37.pyc
│   │   │   │   ├── test_paas.cpython-37.pyc
│   │   │   │   ├── test_record.cpython-37.pyc
│   │   │   │   ├── test_root.cpython-37.pyc
│   │   │   │   ├── test_snapshotprofile.cpython-37.pyc
│   │   │   │   ├── test_sshkey.cpython-37.pyc
│   │   │   │   ├── test_status.cpython-37.pyc
│   │   │   │   ├── test_vhost.cpython-37.pyc
│   │   │   │   ├── test_vlan.cpython-37.pyc
│   │   │   │   ├── test_vm.cpython-37.pyc
│   │   │   │   └── test_webacc.cpython-37.pyc
│   │   │   ├── test_account.py
│   │   │   ├── test_certificate.py
│   │   │   ├── test_certstore.py
│   │   │   ├── test_config.py
│   │   │   ├── test_contact.py
│   │   │   ├── test_disk.py
│   │   │   ├── test_dns.py
│   │   │   ├── test_dnssec.py
│   │   │   ├── test_domain.py
│   │   │   ├── test_forward.py
│   │   │   ├── test_ip.py
│   │   │   ├── test_mail.py
│   │   │   ├── test_oper.py
│   │   │   ├── test_paas.py
│   │   │   ├── test_record.py
│   │   │   ├── test_root.py
│   │   │   ├── test_snapshotprofile.py
│   │   │   ├── test_sshkey.py
│   │   │   ├── test_status.py
│   │   │   ├── test_vhost.py
│   │   │   ├── test_vlan.py
│   │   │   ├── test_vm.py
│   │   │   └── test_webacc.py
│   │   ├── compat.py
│   │   ├── fixtures
│   │   │   ├── api.py
│   │   │   ├── _cert.py
│   │   │   ├── _contact.py
│   │   │   ├── _domain.py
│   │   │   ├── _hosting.py
│   │   │   ├── __init__.py
│   │   │   ├── mocks.py
│   │   │   ├── _operation.py
│   │   │   ├── _paas.py
│   │   │   ├── __pycache__
│   │   │   │   ├── api.cpython-37.pyc
│   │   │   │   ├── _cert.cpython-37.pyc
│   │   │   │   ├── _contact.cpython-37.pyc
│   │   │   │   ├── _domain.cpython-37.pyc
│   │   │   │   ├── _hosting.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── mocks.cpython-37.pyc
│   │   │   │   ├── _operation.cpython-37.pyc
│   │   │   │   ├── _paas.cpython-37.pyc
│   │   │   │   └── _version.cpython-37.pyc
│   │   │   └── _version.py
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── compat.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   └── test_main.cpython-37.pyc
│   │   └── test_main.py
│   ├── gandi.cli-1.5.dist-info
│   │   ├── entry_points.txt
│   │   ├── INSTALLER
│   │   ├── LICENSE
│   │   ├── METADATA
│   │   ├── namespace_packages.txt
│   │   ├── RECORD
│   │   ├── top_level.txt
│   │   └── WHEEL
│   └── gandi.cli-1.5-py3.7-nspkg.pth
└── nix-support
└── propagated-build-inputs
23 directories, 213 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment