gitextract_7effjn6s/ ├── .coveragerc ├── .flake8 ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── auto-merge.yml │ ├── ci.yaml │ └── codeql.yml ├── .gitignore ├── .mypy.ini ├── CHANGES.rst ├── CONTRIBUTORS.txt ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── aiomcache/ │ ├── __init__.py │ ├── client.py │ ├── constants.py │ ├── exceptions.py │ ├── pool.py │ └── py.typed ├── examples/ │ ├── simple.py │ └── simple_with_flag_handler.py ├── pytest.ini ├── requirements-dev.txt ├── requirements.txt ├── setup.cfg ├── setup.py └── tests/ ├── __init__.py ├── commands_test.py ├── conftest.py ├── conn_args_test.py ├── flag_helper.py └── pool_test.py