Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created October 24, 2018 07:50
Show Gist options
  • Save ryantm/7887a830050de97ec36b8683394dbfe5 to your computer and use it in GitHub Desktop.
Save ryantm/7887a830050de97ec36b8683394dbfe5 to your computer and use it in GitHub Desktop.
/nix/store/nz59h1c086d8vy2cwxjjlg0a5ygixy0d-python3.6-kazoo-2.5.0
├── lib
│   └── python3.6
│   └── site-packages
│   ├── kazoo
│   │   ├── client.py
│   │   ├── exceptions.py
│   │   ├── handlers
│   │   │   ├── eventlet.py
│   │   │   ├── gevent.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── eventlet.cpython-36.pyc
│   │   │   │   ├── gevent.cpython-36.pyc
│   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   ├── threading.cpython-36.pyc
│   │   │   │   └── utils.cpython-36.pyc
│   │   │   ├── threading.py
│   │   │   └── utils.py
│   │   ├── hosts.py
│   │   ├── __init__.py
│   │   ├── interfaces.py
│   │   ├── loggingsupport.py
│   │   ├── protocol
│   │   │   ├── connection.py
│   │   │   ├── __init__.py
│   │   │   ├── paths.py
│   │   │   ├── __pycache__
│   │   │   │   ├── connection.cpython-36.pyc
│   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   ├── paths.cpython-36.pyc
│   │   │   │   ├── serialization.cpython-36.pyc
│   │   │   │   └── states.cpython-36.pyc
│   │   │   ├── serialization.py
│   │   │   └── states.py
│   │   ├── __pycache__
│   │   │   ├── client.cpython-36.pyc
│   │   │   ├── exceptions.cpython-36.pyc
│   │   │   ├── hosts.cpython-36.pyc
│   │   │   ├── __init__.cpython-36.pyc
│   │   │   ├── interfaces.cpython-36.pyc
│   │   │   ├── loggingsupport.cpython-36.pyc
│   │   │   ├── python2atexit.cpython-36.pyc
│   │   │   ├── retry.cpython-36.pyc
│   │   │   ├── security.cpython-36.pyc
│   │   │   └── version.cpython-36.pyc
│   │   ├── python2atexit.py
│   │   ├── recipe
│   │   │   ├── barrier.py
│   │   │   ├── cache.py
│   │   │   ├── counter.py
│   │   │   ├── election.py
│   │   │   ├── __init__.py
│   │   │   ├── lease.py
│   │   │   ├── lock.py
│   │   │   ├── partitioner.py
│   │   │   ├── party.py
│   │   │   ├── __pycache__
│   │   │   │   ├── barrier.cpython-36.pyc
│   │   │   │   ├── cache.cpython-36.pyc
│   │   │   │   ├── counter.cpython-36.pyc
│   │   │   │   ├── election.cpython-36.pyc
│   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   ├── lease.cpython-36.pyc
│   │   │   │   ├── lock.cpython-36.pyc
│   │   │   │   ├── partitioner.cpython-36.pyc
│   │   │   │   ├── party.cpython-36.pyc
│   │   │   │   ├── queue.cpython-36.pyc
│   │   │   │   └── watchers.cpython-36.pyc
│   │   │   ├── queue.py
│   │   │   └── watchers.py
│   │   ├── retry.py
│   │   ├── security.py
│   │   ├── testing
│   │   │   ├── common.py
│   │   │   ├── harness.py
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   ├── common.cpython-36.pyc
│   │   │   ├── harness.cpython-36.pyc
│   │   │   └── __init__.cpython-36.pyc
│   │   ├── tests
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   ├── test_barrier.cpython-36.pyc
│   │   │   │   ├── test_build.cpython-36.pyc
│   │   │   │   ├── test_cache.cpython-36.pyc
│   │   │   │   ├── test_client.cpython-36.pyc
│   │   │   │   ├── test_connection.cpython-36.pyc
│   │   │   │   ├── test_counter.cpython-36.pyc
│   │   │   │   ├── test_election.cpython-36.pyc
│   │   │   │   ├── test_eventlet_handler.cpython-36.pyc
│   │   │   │   ├── test_exceptions.cpython-36.pyc
│   │   │   │   ├── test_gevent_handler.cpython-36.pyc
│   │   │   │   ├── test_hosts.cpython-36.pyc
│   │   │   │   ├── test_interrupt.cpython-36.pyc
│   │   │   │   ├── test_lease.cpython-36.pyc
│   │   │   │   ├── test_lock.cpython-36.pyc
│   │   │   │   ├── test_partitioner.cpython-36.pyc
│   │   │   │   ├── test_party.cpython-36.pyc
│   │   │   │   ├── test_paths.cpython-36.pyc
│   │   │   │   ├── test_queue.cpython-36.pyc
│   │   │   │   ├── test_retry.cpython-36.pyc
│   │   │   │   ├── test_security.cpython-36.pyc
│   │   │   │   ├── test_threading_handler.cpython-36.pyc
│   │   │   │   ├── test_watchers.cpython-36.pyc
│   │   │   │   └── util.cpython-36.pyc
│   │   │   ├── test_barrier.py
│   │   │   ├── test_build.py
│   │   │   ├── test_cache.py
│   │   │   ├── test_client.py
│   │   │   ├── test_connection.py
│   │   │   ├── test_counter.py
│   │   │   ├── test_election.py
│   │   │   ├── test_eventlet_handler.py
│   │   │   ├── test_exceptions.py
│   │   │   ├── test_gevent_handler.py
│   │   │   ├── test_hosts.py
│   │   │   ├── test_interrupt.py
│   │   │   ├── test_lease.py
│   │   │   ├── test_lock.py
│   │   │   ├── test_partitioner.py
│   │   │   ├── test_party.py
│   │   │   ├── test_paths.py
│   │   │   ├── test_queue.py
│   │   │   ├── test_retry.py
│   │   │   ├── test_security.py
│   │   │   ├── test_threading_handler.py
│   │   │   ├── test_watchers.py
│   │   │   └── util.py
│   │   └── version.py
│   └── kazoo-2.5.0.dist-info
│   ├── INSTALLER
│   ├── LICENSE
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
17 directories, 123 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment