Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created May 22, 2019 17:50
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/87e73d69a83fac26e21b291528c20ad9 to your computer and use it in GitHub Desktop.
Save ryantm/87e73d69a83fac26e21b291528c20ad9 to your computer and use it in GitHub Desktop.
/nix/store/ayqxq108gs62qrq4zcy5b59gd2yzrh52-python3.7-ipyparallel-6.2.4
├── bin
│   ├── ipcluster
│   ├── ipcontroller
│   └── ipengine
├── etc
│   └── jupyter
│   ├── jupyter_notebook_config.d
│   │   └── ipyparallel-serverextension.json
│   └── nbconfig
│   └── tree.d
│   └── ipyparallel-nbextension.json
├── lib
│   └── python3.7
│   └── site-packages
│   ├── ipyparallel
│   │   ├── apps
│   │   │   ├── baseapp.py
│   │   │   ├── daemonize.py
│   │   │   ├── __init__.py
│   │   │   ├── ipclusterapp.py
│   │   │   ├── ipcontrollerapp.py
│   │   │   ├── ipengineapp.py
│   │   │   ├── iploggerapp.py
│   │   │   ├── launcher.py
│   │   │   ├── logwatcher.py
│   │   │   ├── __pycache__
│   │   │   │   ├── baseapp.cpython-37.pyc
│   │   │   │   ├── daemonize.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── ipclusterapp.cpython-37.pyc
│   │   │   │   ├── ipcontrollerapp.cpython-37.pyc
│   │   │   │   ├── ipengineapp.cpython-37.pyc
│   │   │   │   ├── iploggerapp.cpython-37.pyc
│   │   │   │   ├── launcher.cpython-37.pyc
│   │   │   │   ├── logwatcher.cpython-37.pyc
│   │   │   │   ├── win32support.cpython-37.pyc
│   │   │   │   └── winhpcjob.cpython-37.pyc
│   │   │   ├── win32support.py
│   │   │   └── winhpcjob.py
│   │   ├── client
│   │   │   ├── asyncresult.py
│   │   │   ├── client.py
│   │   │   ├── futures.py
│   │   │   ├── __init__.py
│   │   │   ├── _joblib.py
│   │   │   ├── magics.py
│   │   │   ├── map.py
│   │   │   ├── __pycache__
│   │   │   │   ├── asyncresult.cpython-37.pyc
│   │   │   │   ├── client.cpython-37.pyc
│   │   │   │   ├── futures.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── _joblib.cpython-37.pyc
│   │   │   │   ├── magics.cpython-37.pyc
│   │   │   │   ├── map.cpython-37.pyc
│   │   │   │   ├── remotefunction.cpython-37.pyc
│   │   │   │   └── view.cpython-37.pyc
│   │   │   ├── remotefunction.py
│   │   │   └── view.py
│   │   ├── cluster.py
│   │   ├── controller
│   │   │   ├── dependency.py
│   │   │   ├── dictdb.py
│   │   │   ├── heartmonitor.py
│   │   │   ├── hub.py
│   │   │   ├── __init__.py
│   │   │   ├── __main__.py
│   │   │   ├── mongodb.py
│   │   │   ├── __pycache__
│   │   │   │   ├── dependency.cpython-37.pyc
│   │   │   │   ├── dictdb.cpython-37.pyc
│   │   │   │   ├── heartmonitor.cpython-37.pyc
│   │   │   │   ├── hub.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── __main__.cpython-37.pyc
│   │   │   │   ├── mongodb.cpython-37.pyc
│   │   │   │   ├── scheduler.cpython-37.pyc
│   │   │   │   └── sqlitedb.cpython-37.pyc
│   │   │   ├── scheduler.py
│   │   │   └── sqlitedb.py
│   │   ├── datapub.py
│   │   ├── engine
│   │   │   ├── datapub.py
│   │   │   ├── engine.py
│   │   │   ├── __init__.py
│   │   │   ├── kernel.py
│   │   │   ├── log.py
│   │   │   ├── __main__.py
│   │   │   └── __pycache__
│   │   │   ├── datapub.cpython-37.pyc
│   │   │   ├── engine.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── kernel.cpython-37.pyc
│   │   │   ├── log.cpython-37.pyc
│   │   │   └── __main__.cpython-37.pyc
│   │   ├── error.py
│   │   ├── factory.py
│   │   ├── __init__.py
│   │   ├── joblib.py
│   │   ├── logger.py
│   │   ├── nbextension
│   │   │   ├── clustermanager.py
│   │   │   ├── handlers.py
│   │   │   ├── __init__.py
│   │   │   ├── install.py
│   │   │   ├── __pycache__
│   │   │   │   ├── clustermanager.cpython-37.pyc
│   │   │   │   ├── handlers.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── install.cpython-37.pyc
│   │   │   └── static
│   │   │   ├── clusterlist.css
│   │   │   ├── clusterlist.js
│   │   │   └── main.js
│   │   ├── __pycache__
│   │   │   ├── cluster.cpython-37.pyc
│   │   │   ├── datapub.cpython-37.pyc
│   │   │   ├── error.cpython-37.pyc
│   │   │   ├── factory.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── joblib.cpython-37.pyc
│   │   │   ├── logger.cpython-37.pyc
│   │   │   ├── util.cpython-37.pyc
│   │   │   └── _version.cpython-37.pyc
│   │   ├── serialize
│   │   │   ├── canning.py
│   │   │   ├── codeutil.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── canning.cpython-37.pyc
│   │   │   │   ├── codeutil.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── serialize.cpython-37.pyc
│   │   │   └── serialize.py
│   │   ├── tests
│   │   │   ├── clienttest.py
│   │   │   ├── conftest.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── clienttest.cpython-37.pyc
│   │   │   │   ├── conftest.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_apps.cpython-37.pyc
│   │   │   │   ├── test_asyncresult.cpython-37.pyc
│   │   │   │   ├── test_canning.cpython-37.pyc
│   │   │   │   ├── test_client.cpython-37.pyc
│   │   │   │   ├── test_db.cpython-37.pyc
│   │   │   │   ├── test_dependency.cpython-37.pyc
│   │   │   │   ├── test_executor.cpython-37.pyc
│   │   │   │   ├── test_joblib.cpython-37.pyc
│   │   │   │   ├── test_launcher.cpython-37.pyc
│   │   │   │   ├── test_lbview.cpython-37.pyc
│   │   │   │   ├── test_magics.cpython-37.pyc
│   │   │   │   ├── test_mongodb.cpython-37.pyc
│   │   │   │   ├── test_remotefunction.cpython-37.pyc
│   │   │   │   ├── test_serialize.cpython-37.pyc
│   │   │   │   ├── test_util.cpython-37.pyc
│   │   │   │   └── test_view.cpython-37.pyc
│   │   │   ├── test_apps.py
│   │   │   ├── test_asyncresult.py
│   │   │   ├── test_canning.py
│   │   │   ├── test_client.py
│   │   │   ├── test_db.py
│   │   │   ├── test_dependency.py
│   │   │   ├── test_executor.py
│   │   │   ├── test_joblib.py
│   │   │   ├── test_launcher.py
│   │   │   ├── test_lbview.py
│   │   │   ├── test_magics.py
│   │   │   ├── test_mongodb.py
│   │   │   ├── test_remotefunction.py
│   │   │   ├── test_serialize.py
│   │   │   ├── test_util.py
│   │   │   └── test_view.py
│   │   ├── util.py
│   │   └── _version.py
│   └── ipyparallel-6.2.4.dist-info
│   ├── COPYING.md
│   ├── entry_points.txt
│   ├── INSTALLER
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
├── nix-support
│   └── propagated-build-inputs
└── share
└── jupyter
└── nbextensions
└── ipyparallel
├── clusterlist.css
├── clusterlist.js
└── main.js
32 directories, 161 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment