gitextract_mo63menp/ ├── .flake8 ├── .github/ │ └── workflows/ │ └── main.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── DESCRIPTION.rst ├── LICENSE ├── MANIFEST.in ├── README.md ├── pyproject.toml ├── pytest_httpbin/ │ ├── __init__.py │ ├── certs/ │ │ ├── README.md │ │ ├── client.pem │ │ ├── server.key │ │ └── server.pem │ ├── certs.py │ ├── plugin.py │ ├── serve.py │ └── version.py ├── release.py ├── runtests.sh └── tests/ ├── conftest.py ├── test_httpbin.py ├── test_server.py └── util.py