Skip to content

Instantly share code, notes, and snippets.

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/43630468fca7a5d02057835a981f961b to your computer and use it in GitHub Desktop.
Save r-ryantm/43630468fca7a5d02057835a981f961b to your computer and use it in GitHub Desktop.
/nix/store/ijhi61hqh7dx0627fn0aagdsb122lc2m-brotab-1.2.2
├── bin
│   ├── brotab
│   ├── bt
│   └── bt_mediator
├── config
│   ├── chromium_mediator.json
│   └── firefox_mediator.json
├── lib
│   └── python3.7
│   └── site-packages
│   ├── brotab
│   │   ├── api.py
│   │   ├── const.py
│   │   ├── __init__.py
│   │   ├── inout.py
│   │   ├── main.py
│   │   ├── mediator
│   │   │   ├── brotab_mediator.py
│   │   │   ├── chromium_mediator.json
│   │   │   ├── firefox_mediator.json
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   ├── brotab_mediator.cpython-37.pyc
│   │   │   └── __init__.cpython-37.pyc
│   │   ├── operations.py
│   │   ├── parallel.py
│   │   ├── platform.py
│   │   ├── __pycache__
│   │   │   ├── api.cpython-37.pyc
│   │   │   ├── const.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── inout.cpython-37.pyc
│   │   │   ├── main.cpython-37.pyc
│   │   │   ├── operations.cpython-37.pyc
│   │   │   ├── parallel.cpython-37.pyc
│   │   │   ├── platform.cpython-37.pyc
│   │   │   ├── tab.cpython-37.pyc
│   │   │   ├── utils.cpython-37.pyc
│   │   │   └── __version__.cpython-37.pyc
│   │   ├── search
│   │   │   ├── index.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── index.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── query.cpython-37.pyc
│   │   │   └── query.py
│   │   ├── tab.py
│   │   ├── tests
│   │   │   ├── __init__.py
│   │   │   ├── mocks.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── mocks.cpython-37.pyc
│   │   │   │   ├── test_brotab.cpython-37.pyc
│   │   │   │   ├── test_inout.cpython-37.pyc
│   │   │   │   ├── test_integration.cpython-37.pyc
│   │   │   │   ├── test_main.cpython-37.pyc
│   │   │   │   ├── test_utils.cpython-37.pyc
│   │   │   │   └── utils.cpython-37.pyc
│   │   │   ├── test_brotab.py
│   │   │   ├── test_inout.py
│   │   │   ├── test_integration.py
│   │   │   ├── test_main.py
│   │   │   ├── test_utils.py
│   │   │   └── utils.py
│   │   ├── utils.py
│   │   └── __version__.py
│   └── brotab-1.2.2.dist-info
│   ├── entry_points.txt
│   ├── INSTALLER
│   ├── LICENSE
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
15 directories, 63 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment