gitextract_xv5jft2n/ ├── .dockerignore ├── .flake8 ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── build_docker.yml │ ├── python.yml │ └── release.yml ├── .gitignore ├── .markdownlint.yaml ├── .mypy.ini ├── .pre-commit-config.yaml ├── .yamllint ├── Dockerfile ├── README.md ├── example_outputs/ │ ├── lisek-out.swagger.yml │ └── lisek-static.html ├── mitmproxy2swagger/ │ ├── __init__.py │ ├── console_util.py │ ├── har_capture_reader.py │ ├── mitmproxy2swagger.py │ ├── mitmproxy_capture_reader.py │ ├── swagger_util.py │ ├── test_mitmproxy2swagger.py │ ├── test_openapi_compliance.py │ └── testing_util.py ├── pyproject.toml ├── specs.yml └── testdata/ ├── form_data_flows ├── generic_keys_flows ├── generic_keys_testclient.py ├── generic_keys_testserver.py ├── msgpack_flows ├── msgpack_testclient.py ├── msgpack_testserver.py ├── sklep.lisek.app.har ├── test_flows ├── testclient.py └── testserver.py