Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created November 2, 2019 20: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/4bb364ce76d8922b511d1eccc4f78070 to your computer and use it in GitHub Desktop.
Save ryantm/4bb364ce76d8922b511d1eccc4f78070 to your computer and use it in GitHub Desktop.
/nix/store/i1bxh7ldxzq445z360c1d4v93mc5h2q5-python3.8-plumbum-1.6.8
├── lib
│   └── python3.8
│   └── site-packages
│   ├── plumbum
│   │   ├── cli
│   │   │   ├── application.py
│   │   │   ├── config.py
│   │   │   ├── i18n
│   │   │   │   ├── de
│   │   │   │   │   └── LC_MESSAGES
│   │   │   │   │   └── plumbum.cli.mo
│   │   │   │   ├── fr
│   │   │   │   │   └── LC_MESSAGES
│   │   │   │   │   └── plumbum.cli.mo
│   │   │   │   ├── nl
│   │   │   │   │   └── LC_MESSAGES
│   │   │   │   │   └── plumbum.cli.mo
│   │   │   │   └── ru
│   │   │   │   └── LC_MESSAGES
│   │   │   │   └── plumbum.cli.mo
│   │   │   ├── i18n.py
│   │   │   ├── image.py
│   │   │   ├── __init__.py
│   │   │   ├── progress.py
│   │   │   ├── __pycache__
│   │   │   │   ├── application.cpython-38.pyc
│   │   │   │   ├── config.cpython-38.pyc
│   │   │   │   ├── i18n.cpython-38.pyc
│   │   │   │   ├── image.cpython-38.pyc
│   │   │   │   ├── __init__.cpython-38.pyc
│   │   │   │   ├── progress.cpython-38.pyc
│   │   │   │   ├── switches.cpython-38.pyc
│   │   │   │   ├── terminal.cpython-38.pyc
│   │   │   │   └── termsize.cpython-38.pyc
│   │   │   ├── switches.py
│   │   │   ├── terminal.py
│   │   │   └── termsize.py
│   │   ├── colorlib
│   │   │   ├── factories.py
│   │   │   ├── __init__.py
│   │   │   ├── _ipython_ext.py
│   │   │   ├── __main__.py
│   │   │   ├── names.py
│   │   │   ├── __pycache__
│   │   │   │   ├── factories.cpython-38.pyc
│   │   │   │   ├── __init__.cpython-38.pyc
│   │   │   │   ├── _ipython_ext.cpython-38.pyc
│   │   │   │   ├── __main__.cpython-38.pyc
│   │   │   │   ├── names.cpython-38.pyc
│   │   │   │   └── styles.cpython-38.pyc
│   │   │   └── styles.py
│   │   ├── colors.py
│   │   ├── commands
│   │   │   ├── base.py
│   │   │   ├── daemons.py
│   │   │   ├── __init__.py
│   │   │   ├── modifiers.py
│   │   │   ├── processes.py
│   │   │   └── __pycache__
│   │   │   ├── base.cpython-38.pyc
│   │   │   ├── daemons.cpython-38.pyc
│   │   │   ├── __init__.cpython-38.pyc
│   │   │   ├── modifiers.cpython-38.pyc
│   │   │   └── processes.cpython-38.pyc
│   │   ├── fs
│   │   │   ├── atomic.py
│   │   │   ├── __init__.py
│   │   │   ├── mounts.py
│   │   │   └── __pycache__
│   │   │   ├── atomic.cpython-38.pyc
│   │   │   ├── __init__.cpython-38.pyc
│   │   │   └── mounts.cpython-38.pyc
│   │   ├── __init__.py
│   │   ├── lib.py
│   │   ├── machines
│   │   │   ├── base.py
│   │   │   ├── env.py
│   │   │   ├── __init__.py
│   │   │   ├── local.py
│   │   │   ├── paramiko_machine.py
│   │   │   ├── __pycache__
│   │   │   │   ├── base.cpython-38.pyc
│   │   │   │   ├── env.cpython-38.pyc
│   │   │   │   ├── __init__.cpython-38.pyc
│   │   │   │   ├── local.cpython-38.pyc
│   │   │   │   ├── paramiko_machine.cpython-38.pyc
│   │   │   │   ├── remote.cpython-38.pyc
│   │   │   │   ├── session.cpython-38.pyc
│   │   │   │   ├── ssh_machine.cpython-38.pyc
│   │   │   │   └── _windows.cpython-38.pyc
│   │   │   ├── remote.py
│   │   │   ├── session.py
│   │   │   ├── ssh_machine.py
│   │   │   └── _windows.py
│   │   ├── path
│   │   │   ├── base.py
│   │   │   ├── __init__.py
│   │   │   ├── local.py
│   │   │   ├── __pycache__
│   │   │   │   ├── base.cpython-38.pyc
│   │   │   │   ├── __init__.cpython-38.pyc
│   │   │   │   ├── local.cpython-38.pyc
│   │   │   │   ├── remote.cpython-38.pyc
│   │   │   │   └── utils.cpython-38.pyc
│   │   │   ├── remote.py
│   │   │   └── utils.py
│   │   ├── __pycache__
│   │   │   ├── colors.cpython-38.pyc
│   │   │   ├── __init__.cpython-38.pyc
│   │   │   ├── lib.cpython-38.pyc
│   │   │   ├── _testtools.cpython-38.pyc
│   │   │   ├── typed_env.cpython-38.pyc
│   │   │   └── version.cpython-38.pyc
│   │   ├── _testtools.py
│   │   ├── typed_env.py
│   │   └── version.py
│   └── plumbum-1.6.8.dist-info
│   ├── INSTALLER
│   ├── LICENSE
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
28 directories, 97 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment