Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created October 17, 2020 03:25
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/485e89cbe23035946fab901630ef273d to your computer and use it in GitHub Desktop.
Save r-ryantm/485e89cbe23035946fab901630ef273d to your computer and use it in GitHub Desktop.
/nix/store/qmsjb38xycya80knfpwhd5rahbsgy7q3-python3.7-aiokafka-0.6.0
├── lib
│   └── python3.7
│   └── site-packages
│   ├── aiokafka
│   │   ├── abc.py
│   │   ├── client.py
│   │   ├── cluster.py
│   │   ├── conn.py
│   │   ├── consumer
│   │   │   ├── consumer.py
│   │   │   ├── fetcher.py
│   │   │   ├── group_coordinator.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── consumer.cpython-37.pyc
│   │   │   │   ├── fetcher.cpython-37.pyc
│   │   │   │   ├── group_coordinator.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── subscription_state.cpython-37.pyc
│   │   │   └── subscription_state.py
│   │   ├── errors.py
│   │   ├── helpers.py
│   │   ├── __init__.py
│   │   ├── producer
│   │   │   ├── __init__.py
│   │   │   ├── message_accumulator.py
│   │   │   ├── producer.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── message_accumulator.cpython-37.pyc
│   │   │   │   ├── producer.cpython-37.pyc
│   │   │   │   ├── sender.cpython-37.pyc
│   │   │   │   └── transaction_manager.cpython-37.pyc
│   │   │   ├── sender.py
│   │   │   └── transaction_manager.py
│   │   ├── protocol
│   │   │   ├── coordination.py
│   │   │   ├── fetch.py
│   │   │   ├── produce.py
│   │   │   ├── __pycache__
│   │   │   │   ├── coordination.cpython-37.pyc
│   │   │   │   ├── fetch.cpython-37.pyc
│   │   │   │   ├── produce.cpython-37.pyc
│   │   │   │   └── transaction.cpython-37.pyc
│   │   │   └── transaction.py
│   │   ├── __pycache__
│   │   │   ├── abc.cpython-37.pyc
│   │   │   ├── client.cpython-37.pyc
│   │   │   ├── cluster.cpython-37.pyc
│   │   │   ├── conn.cpython-37.pyc
│   │   │   ├── errors.cpython-37.pyc
│   │   │   ├── helpers.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── structs.cpython-37.pyc
│   │   │   └── util.cpython-37.pyc
│   │   ├── record
│   │   │   ├── control_record.py
│   │   │   ├── _crc32c.py
│   │   │   ├── _crecords
│   │   │   │   ├── consts.pxi
│   │   │   │   ├── crc32c.c
│   │   │   │   ├── crc32c.h
│   │   │   │   ├── cutil.c
│   │   │   │   ├── cutil.cpython-37m-x86_64-linux-gnu.so
│   │   │   │   ├── cutil.pxd
│   │   │   │   ├── cutil.pyx
│   │   │   │   ├── default_records.c
│   │   │   │   ├── default_records.cpython-37m-x86_64-linux-gnu.so
│   │   │   │   ├── default_records.pxd
│   │   │   │   ├── default_records.pyx
│   │   │   │   ├── hton.pxd
│   │   │   │   ├── __init__.py
│   │   │   │   ├── legacy_records.c
│   │   │   │   ├── legacy_records.cpython-37m-x86_64-linux-gnu.so
│   │   │   │   ├── legacy_records.pxd
│   │   │   │   ├── legacy_records.pyx
│   │   │   │   ├── memory_records.c
│   │   │   │   ├── memory_records.cpython-37m-x86_64-linux-gnu.so
│   │   │   │   ├── memory_records.pyx
│   │   │   │   └── __pycache__
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── default_records.py
│   │   │   ├── __init__.py
│   │   │   ├── legacy_records.py
│   │   │   ├── memory_records.py
│   │   │   ├── __pycache__
│   │   │   │   ├── control_record.cpython-37.pyc
│   │   │   │   ├── _crc32c.cpython-37.pyc
│   │   │   │   ├── default_records.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── legacy_records.cpython-37.pyc
│   │   │   │   ├── memory_records.cpython-37.pyc
│   │   │   │   └── util.cpython-37.pyc
│   │   │   └── util.py
│   │   ├── structs.py
│   │   └── util.py
│   └── aiokafka-0.6.0.dist-info
│   ├── direct_url.json
│   ├── INSTALLER
│   ├── LICENSE
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
17 directories, 89 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment