Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created December 17, 2020 06:31
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/aabfec4e8eb5b3943c2b3800bef20426 to your computer and use it in GitHub Desktop.
Save r-ryantm/aabfec4e8eb5b3943c2b3800bef20426 to your computer and use it in GitHub Desktop.
/nix/store/bn48p96pdq43sdjbna7pis85szqpv9m4-mopidy-3.1.0
├── bin
│   └── mopidy
├── lib
│   └── python3.8
│   └── site-packages
│   ├── mopidy
│   │   ├── audio
│   │   │   ├── actor.py
│   │   │   ├── constants.py
│   │   │   ├── __init__.py
│   │   │   ├── listener.py
│   │   │   ├── __pycache__
│   │   │   │   ├── actor.cpython-38.pyc
│   │   │   │   ├── constants.cpython-38.pyc
│   │   │   │   ├── __init__.cpython-38.pyc
│   │   │   │   ├── listener.cpython-38.pyc
│   │   │   │   ├── scan.cpython-38.pyc
│   │   │   │   ├── tags.cpython-38.pyc
│   │   │   │   └── utils.cpython-38.pyc
│   │   │   ├── scan.py
│   │   │   ├── tags.py
│   │   │   └── utils.py
│   │   ├── backend.py
│   │   ├── commands.py
│   │   ├── config
│   │   │   ├── default.conf
│   │   │   ├── __init__.py
│   │   │   ├── keyring.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-38.pyc
│   │   │   │   ├── keyring.cpython-38.pyc
│   │   │   │   ├── schemas.cpython-38.pyc
│   │   │   │   ├── types.cpython-38.pyc
│   │   │   │   └── validators.cpython-38.pyc
│   │   │   ├── schemas.py
│   │   │   ├── types.py
│   │   │   └── validators.py
│   │   ├── core
│   │   │   ├── actor.py
│   │   │   ├── history.py
│   │   │   ├── __init__.py
│   │   │   ├── library.py
│   │   │   ├── listener.py
│   │   │   ├── mixer.py
│   │   │   ├── playback.py
│   │   │   ├── playlists.py
│   │   │   ├── __pycache__
│   │   │   │   ├── actor.cpython-38.pyc
│   │   │   │   ├── history.cpython-38.pyc
│   │   │   │   ├── __init__.cpython-38.pyc
│   │   │   │   ├── library.cpython-38.pyc
│   │   │   │   ├── listener.cpython-38.pyc
│   │   │   │   ├── mixer.cpython-38.pyc
│   │   │   │   ├── playback.cpython-38.pyc
│   │   │   │   ├── playlists.cpython-38.pyc
│   │   │   │   └── tracklist.cpython-38.pyc
│   │   │   └── tracklist.py
│   │   ├── exceptions.py
│   │   ├── ext.py
│   │   ├── file
│   │   │   ├── backend.py
│   │   │   ├── ext.conf
│   │   │   ├── __init__.py
│   │   │   ├── library.py
│   │   │   └── __pycache__
│   │   │   ├── backend.cpython-38.pyc
│   │   │   ├── __init__.cpython-38.pyc
│   │   │   └── library.cpython-38.pyc
│   │   ├── http
│   │   │   ├── actor.py
│   │   │   ├── data
│   │   │   │   ├── clients.html
│   │   │   │   ├── favicon.ico
│   │   │   │   └── mopidy.css
│   │   │   ├── ext.conf
│   │   │   ├── handlers.py
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   ├── actor.cpython-38.pyc
│   │   │   ├── handlers.cpython-38.pyc
│   │   │   └── __init__.cpython-38.pyc
│   │   ├── httpclient.py
│   │   ├── __init__.py
│   │   ├── internal
│   │   │   ├── deprecation.py
│   │   │   ├── deps.py
│   │   │   ├── formatting.py
│   │   │   ├── gi.py
│   │   │   ├── http.py
│   │   │   ├── __init__.py
│   │   │   ├── jsonrpc.py
│   │   │   ├── log.py
│   │   │   ├── models.py
│   │   │   ├── network.py
│   │   │   ├── path.py
│   │   │   ├── playlists.py
│   │   │   ├── process.py
│   │   │   ├── __pycache__
│   │   │   │   ├── deprecation.cpython-38.pyc
│   │   │   │   ├── deps.cpython-38.pyc
│   │   │   │   ├── formatting.cpython-38.pyc
│   │   │   │   ├── gi.cpython-38.pyc
│   │   │   │   ├── http.cpython-38.pyc
│   │   │   │   ├── __init__.cpython-38.pyc
│   │   │   │   ├── jsonrpc.cpython-38.pyc
│   │   │   │   ├── log.cpython-38.pyc
│   │   │   │   ├── models.cpython-38.pyc
│   │   │   │   ├── network.cpython-38.pyc
│   │   │   │   ├── path.cpython-38.pyc
│   │   │   │   ├── playlists.cpython-38.pyc
│   │   │   │   ├── process.cpython-38.pyc
│   │   │   │   ├── storage.cpython-38.pyc
│   │   │   │   ├── timer.cpython-38.pyc
│   │   │   │   ├── validation.cpython-38.pyc
│   │   │   │   ├── versioning.cpython-38.pyc
│   │   │   │   └── xdg.cpython-38.pyc
│   │   │   ├── storage.py
│   │   │   ├── timer.py
│   │   │   ├── validation.py
│   │   │   ├── versioning.py
│   │   │   └── xdg.py
│   │   ├── listener.py
│   │   ├── m3u
│   │   │   ├── backend.py
│   │   │   ├── ext.conf
│   │   │   ├── __init__.py
│   │   │   ├── playlists.py
│   │   │   ├── __pycache__
│   │   │   │   ├── backend.cpython-38.pyc
│   │   │   │   ├── __init__.cpython-38.pyc
│   │   │   │   ├── playlists.cpython-38.pyc
│   │   │   │   └── translator.cpython-38.pyc
│   │   │   └── translator.py
│   │   ├── __main__.py
│   │   ├── mixer.py
│   │   ├── models
│   │   │   ├── fields.py
│   │   │   ├── immutable.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── fields.cpython-38.pyc
│   │   │   │   ├── immutable.cpython-38.pyc
│   │   │   │   ├── __init__.cpython-38.pyc
│   │   │   │   └── serialize.cpython-38.pyc
│   │   │   └── serialize.py
│   │   ├── __pycache__
│   │   │   ├── backend.cpython-38.pyc
│   │   │   ├── commands.cpython-38.pyc
│   │   │   ├── exceptions.cpython-38.pyc
│   │   │   ├── ext.cpython-38.pyc
│   │   │   ├── httpclient.cpython-38.pyc
│   │   │   ├── __init__.cpython-38.pyc
│   │   │   ├── listener.cpython-38.pyc
│   │   │   ├── __main__.cpython-38.pyc
│   │   │   ├── mixer.cpython-38.pyc
│   │   │   └── zeroconf.cpython-38.pyc
│   │   ├── softwaremixer
│   │   │   ├── ext.conf
│   │   │   ├── __init__.py
│   │   │   ├── mixer.py
│   │   │   └── __pycache__
│   │   │   ├── __init__.cpython-38.pyc
│   │   │   └── mixer.cpython-38.pyc
│   │   ├── stream
│   │   │   ├── actor.py
│   │   │   ├── ext.conf
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   ├── actor.cpython-38.pyc
│   │   │   └── __init__.cpython-38.pyc
│   │   └── zeroconf.py
│   └── Mopidy-3.1.0.dist-info
│   ├── direct_url.json
│   ├── entry_points.txt
│   ├── INSTALLER
│   ├── LICENSE
│   ├── METADATA
│   ├── RECORD
│   ├── REQUESTED
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
29 directories, 154 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment