gitextract_8jb1zy9l/ ├── .flake8 ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── something-else.md │ ├── release-drafter.yml │ └── workflows/ │ ├── coverage.yml │ ├── mindeps.yml │ ├── release-drafter.yml │ ├── release.yml │ └── tests.yml ├── .gitignore ├── .readthedocs.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── docs/ │ ├── conf.py │ ├── index.rst │ ├── license.rst │ ├── reference.rst │ └── requirements.txt ├── mypy.ini ├── noxfile.py ├── pyproject.toml ├── src/ │ └── grpc_interceptor/ │ ├── __init__.py │ ├── client.py │ ├── exception_to_status.py │ ├── exceptions.py │ ├── py.typed │ ├── server.py │ └── testing/ │ ├── __init__.py │ ├── dummy_client.py │ └── protos/ │ ├── __init__.py │ ├── dummy.proto │ ├── dummy_pb2.py │ ├── dummy_pb2.pyi │ └── dummy_pb2_grpc.py └── tests/ ├── __init__.py ├── test_client.py ├── test_exception_to_status.py ├── test_server.py └── test_streaming.py