gitextract_wyjir8km/ ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── dependabot.yml │ └── workflows/ │ ├── bump_version.yaml │ ├── docs-preview.yaml │ ├── docs-publish.yaml │ ├── publish.yaml │ └── python-package.yml ├── .gitignore ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── docker-compose.yaml ├── docs/ │ ├── client.md │ ├── exceptions.md │ ├── faust.md │ ├── index.md │ ├── schemaregistry_server.md │ ├── schemas.md │ └── serializer.md ├── mkdocs.yml ├── pyproject.toml ├── schema_registry/ │ ├── __init__.py │ ├── client/ │ │ ├── __init__.py │ │ ├── client.py │ │ ├── errors.py │ │ ├── paths.py │ │ ├── schema.py │ │ ├── status.py │ │ ├── urls.py │ │ └── utils.py │ ├── py.typed │ └── serializers/ │ ├── __init__.py │ ├── errors.py │ ├── faust.py │ └── message_serializer.py ├── scripts/ │ ├── README.md │ ├── clean │ ├── format │ ├── publish │ ├── test │ └── wait_for_services └── tests/ ├── __init__.py ├── avro_schemas/ │ ├── adv_schema.avsc │ ├── basic_schema.avsc │ ├── invalid_schema.avsc │ ├── logical_types_schema.avsc │ ├── nested_schema.avsc │ ├── order_schema.avsc │ ├── primitive_float.avsc │ ├── primitive_string.avsc │ ├── user_v1.avsc │ └── user_v2.avsc ├── certificates/ │ ├── cert.pem │ └── key.pem ├── client/ │ ├── __init__.py │ ├── async_client/ │ │ ├── __init__.py │ │ ├── test_http_client.py │ │ ├── test_schema.py │ │ ├── test_schema_compatibility.py │ │ ├── test_schema_delete.py │ │ ├── test_schema_getters.py │ │ ├── test_schema_registration.py │ │ └── test_schema_version.py │ ├── sync_client/ │ │ ├── __init__.py │ │ ├── test_http_client.py │ │ ├── test_schema.py │ │ ├── test_schema_compatibility.py │ │ ├── test_schema_delete.py │ │ ├── test_schema_getters.py │ │ ├── test_schema_registration.py │ │ └── test_schema_version.py │ └── test_urls.py ├── conftest.py ├── data_gen.py ├── json_schemas/ │ ├── adv_schema.json │ ├── basic_schema.json │ ├── invalid_schema.json │ ├── nested_schema.json │ ├── order_schema.json │ ├── user_v1.json │ └── user_v2.json └── serializer/ ├── __init__.py ├── test_async_message_serializer.py ├── test_faust_serializer.py ├── test_faust_serializer_clean_payload.py └── test_message_serializer.py