Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created October 24, 2018 13:29
Show Gist options
  • Save ryantm/9b832f08cf0bee66af0c4457fd3b7fa1 to your computer and use it in GitHub Desktop.
Save ryantm/9b832f08cf0bee66af0c4457fd3b7fa1 to your computer and use it in GitHub Desktop.
/nix/store/l61sxld598fsqc2mr9caj8y1zdplpgin-python3.6-foolscap-0.13.1
├── bin
│   ├── flappclient
│   ├── flappserver
│   └── flogtool
├── lib
│   └── python3.6
│   └── site-packages
│   ├── foolscap
│   │   ├── api.py
│   │   ├── appserver
│   │   │   ├── client.py
│   │   │   ├── cli.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   └── server.cpython-36.pyc
│   │   │   ├── server.py
│   │   │   └── services.py
│   │   ├── banana.py
│   │   ├── base32.py
│   │   ├── broker.py
│   │   ├── call.py
│   │   ├── connection.py
│   │   ├── connections
│   │   │   ├── i2p.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── i2p.cpython-36.pyc
│   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   ├── socks.cpython-36.pyc
│   │   │   │   ├── tcp.cpython-36.pyc
│   │   │   │   └── tor.cpython-36.pyc
│   │   │   ├── socks.py
│   │   │   ├── tcp.py
│   │   │   └── tor.py
│   │   ├── constraint.py
│   │   ├── copyable.py
│   │   ├── crypto.py
│   │   ├── eventual.py
│   │   ├── furl.py
│   │   ├── info.py
│   │   ├── __init__.py
│   │   ├── ipb.py
│   │   ├── logging
│   │   │   ├── app_versions.py
│   │   │   ├── cli.py
│   │   │   ├── dumper.py
│   │   │   ├── filter.py
│   │   │   ├── flogfile.py
│   │   │   ├── gatherer.py
│   │   │   ├── incident.py
│   │   │   ├── __init__.py
│   │   │   ├── interfaces.py
│   │   │   ├── levels.py
│   │   │   ├── log.py
│   │   │   ├── publish.py
│   │   │   ├── __pycache__
│   │   │   │   ├── app_versions.cpython-36.pyc
│   │   │   │   ├── filter.cpython-36.pyc
│   │   │   │   ├── flogfile.cpython-36.pyc
│   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   ├── interfaces.cpython-36.pyc
│   │   │   │   ├── levels.cpython-36.pyc
│   │   │   │   └── log.cpython-36.pyc
│   │   │   ├── tail.py
│   │   │   └── web.py
│   │   ├── negotiate.py
│   │   ├── observer.py
│   │   ├── pb.py
│   │   ├── promise.py
│   │   ├── __pycache__
│   │   │   ├── api.cpython-36.pyc
│   │   │   ├── base32.cpython-36.pyc
│   │   │   ├── connection.cpython-36.pyc
│   │   │   ├── constraint.cpython-36.pyc
│   │   │   ├── crypto.cpython-36.pyc
│   │   │   ├── eventual.cpython-36.pyc
│   │   │   ├── furl.cpython-36.pyc
│   │   │   ├── info.cpython-36.pyc
│   │   │   ├── __init__.cpython-36.pyc
│   │   │   ├── ipb.cpython-36.pyc
│   │   │   ├── observer.cpython-36.pyc
│   │   │   ├── promise.cpython-36.pyc
│   │   │   ├── reconnector.cpython-36.pyc
│   │   │   ├── schema.cpython-36.pyc
│   │   │   ├── storage.cpython-36.pyc
│   │   │   ├── stringchain.cpython-36.pyc
│   │   │   ├── tokens.cpython-36.pyc
│   │   │   ├── util.cpython-36.pyc
│   │   │   ├── _version.cpython-36.pyc
│   │   │   └── vocab.cpython-36.pyc
│   │   ├── reconnector.py
│   │   ├── referenceable.py
│   │   ├── remoteinterface.py
│   │   ├── schema.py
│   │   ├── slicer.py
│   │   ├── slicers
│   │   │   ├── allslicers.py
│   │   │   ├── bool.py
│   │   │   ├── decimal_slicer.py
│   │   │   ├── dict.py
│   │   │   ├── __init__.py
│   │   │   ├── list.py
│   │   │   ├── none.py
│   │   │   ├── __pycache__
│   │   │   │   ├── allslicers.cpython-36.pyc
│   │   │   │   ├── bool.cpython-36.pyc
│   │   │   │   ├── decimal_slicer.cpython-36.pyc
│   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   ├── none.cpython-36.pyc
│   │   │   │   ├── unicode.cpython-36.pyc
│   │   │   │   └── vocab.cpython-36.pyc
│   │   │   ├── root.py
│   │   │   ├── set.py
│   │   │   ├── tuple.py
│   │   │   ├── unicode.py
│   │   │   └── vocab.py
│   │   ├── storage.py
│   │   ├── stringchain.py
│   │   ├── test
│   │   │   ├── apphelper.py
│   │   │   ├── bench_banana.py
│   │   │   ├── check-connections-client.py
│   │   │   ├── check-connections-server.py
│   │   │   ├── common.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── apphelper.cpython-36.pyc
│   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   ├── run_trial.cpython-36.pyc
│   │   │   │   ├── test_connection.cpython-36.pyc
│   │   │   │   ├── test_crypto.cpython-36.pyc
│   │   │   │   ├── test_eventual.cpython-36.pyc
│   │   │   │   ├── test_info.cpython-36.pyc
│   │   │   │   ├── test_keepalive.cpython-36.pyc
│   │   │   │   ├── test_listener.cpython-36.pyc
│   │   │   │   ├── test_loopback.cpython-36.pyc
│   │   │   │   ├── test_negotiate.cpython-36.pyc
│   │   │   │   ├── test_observer.cpython-36.pyc
│   │   │   │   ├── test_promise.cpython-36.pyc
│   │   │   │   ├── test_reconnector.cpython-36.pyc
│   │   │   │   ├── test_reference.cpython-36.pyc
│   │   │   │   ├── test_registration.cpython-36.pyc
│   │   │   │   ├── test_serialize.cpython-36.pyc
│   │   │   │   ├── test_stringchain.cpython-36.pyc
│   │   │   │   ├── test_sturdyref.cpython-36.pyc
│   │   │   │   ├── test_unreachable.cpython-36.pyc
│   │   │   │   └── test_util.cpython-36.pyc
│   │   │   ├── run_trial.py
│   │   │   ├── test_appserver.py
│   │   │   ├── test_banana.py
│   │   │   ├── test_call.py
│   │   │   ├── test_connection.py
│   │   │   ├── test_copyable.py
│   │   │   ├── test_crypto.py
│   │   │   ├── test_eventual.py
│   │   │   ├── test_gifts.py
│   │   │   ├── test_info.py
│   │   │   ├── test_interfaces.py
│   │   │   ├── test_keepalive.py
│   │   │   ├── test_listener.py
│   │   │   ├── test_logging.py
│   │   │   ├── test_loopback.py
│   │   │   ├── test_negotiate.py
│   │   │   ├── test_observer.py
│   │   │   ├── test_pb.py
│   │   │   ├── test_promise.py
│   │   │   ├── test_reconnector.py
│   │   │   ├── test_reference.py
│   │   │   ├── test_registration.py
│   │   │   ├── test_schema.py
│   │   │   ├── test_serialize.py
│   │   │   ├── test_stringchain.py
│   │   │   ├── test_sturdyref.py
│   │   │   ├── test_tub.py
│   │   │   ├── test_unreachable.py
│   │   │   ├── test_util.py
│   │   │   └── test__versions.py
│   │   ├── tokens.py
│   │   ├── util.py
│   │   ├── _version.py
│   │   └── vocab.py
│   └── foolscap-0.13.1.dist-info
│   ├── entry_points.txt
│   ├── INSTALLER
│   ├── LICENSE
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
18 directories, 174 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment