Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created November 7, 2020 05:53
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 r-ryantm/31bf609afa783976bc79f267194b1bf0 to your computer and use it in GitHub Desktop.
Save r-ryantm/31bf609afa783976bc79f267194b1bf0 to your computer and use it in GitHub Desktop.
/nix/store/3ahf3q9qyip8118qv8sk6451j902na8y-python3.7-rq-1.5.2
├── bin
│   ├── rq
│   ├── rqinfo
│   └── rqworker
├── lib
│   └── python3.7
│   └── site-packages
│   ├── rq
│   │   ├── cli
│   │   │   ├── cli.py
│   │   │   ├── helpers.py
│   │   │   ├── __init__.py
│   │   │   ├── __main__.py
│   │   │   └── __pycache__
│   │   │   ├── cli.cpython-37.pyc
│   │   │   ├── helpers.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   └── __main__.cpython-37.pyc
│   │   ├── compat
│   │   │   ├── connections.py
│   │   │   ├── dictconfig.py
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   ├── connections.cpython-37.pyc
│   │   │   ├── dictconfig.cpython-37.pyc
│   │   │   └── __init__.cpython-37.pyc
│   │   ├── connections.py
│   │   ├── contrib
│   │   │   ├── __init__.py
│   │   │   ├── legacy.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── legacy.cpython-37.pyc
│   │   │   │   └── sentry.cpython-37.pyc
│   │   │   └── sentry.py
│   │   ├── decorators.py
│   │   ├── defaults.py
│   │   ├── dummy.py
│   │   ├── exceptions.py
│   │   ├── __init__.py
│   │   ├── job.py
│   │   ├── local.py
│   │   ├── logutils.py
│   │   ├── __pycache__
│   │   │   ├── connections.cpython-37.pyc
│   │   │   ├── decorators.cpython-37.pyc
│   │   │   ├── defaults.cpython-37.pyc
│   │   │   ├── dummy.cpython-37.pyc
│   │   │   ├── exceptions.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── job.cpython-37.pyc
│   │   │   ├── local.cpython-37.pyc
│   │   │   ├── logutils.cpython-37.pyc
│   │   │   ├── queue.cpython-37.pyc
│   │   │   ├── registry.cpython-37.pyc
│   │   │   ├── scheduler.cpython-37.pyc
│   │   │   ├── serializers.cpython-37.pyc
│   │   │   ├── suspension.cpython-37.pyc
│   │   │   ├── timeouts.cpython-37.pyc
│   │   │   ├── utils.cpython-37.pyc
│   │   │   ├── version.cpython-37.pyc
│   │   │   ├── worker.cpython-37.pyc
│   │   │   └── worker_registration.cpython-37.pyc
│   │   ├── queue.py
│   │   ├── registry.py
│   │   ├── scheduler.py
│   │   ├── serializers.py
│   │   ├── suspension.py
│   │   ├── timeouts.py
│   │   ├── utils.py
│   │   ├── version.py
│   │   ├── worker.py
│   │   └── worker_registration.py
│   └── rq-1.5.2.dist-info
│   ├── direct_url.json
│   ├── entry_points.txt
│   ├── INSTALLER
│   ├── LICENSE
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
14 directories, 70 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment