gitextract_h1f5vhjq/ ├── .coveragerc ├── .github/ │ ├── CODEOWNERS │ ├── renovate.json5 │ └── workflows/ │ ├── main.yml │ ├── publish.yml │ ├── status_embed.yml │ ├── unit-tests.yml │ └── validation.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs/ │ ├── Makefile │ ├── api/ │ │ ├── basic.rst │ │ ├── internal.rst │ │ └── motd_parsing.rst │ ├── conf.py │ ├── examples/ │ │ ├── code/ │ │ │ ├── ping_as_java_and_bedrock_in_one_time.py │ │ │ ├── ping_many_servers_at_once.py │ │ │ └── player_list_from_query_with_fallback_on_status.py │ │ ├── examples.rst │ │ ├── ping_as_java_and_bedrock_in_one_time.rst │ │ ├── ping_many_servers_at_once.rst │ │ └── player_list_from_query_with_fallback_on_status.rst │ ├── index.rst │ ├── pages/ │ │ ├── contributing.rst │ │ ├── faq.rst │ │ └── versioning.rst │ └── pyproject.toml ├── mcstatus/ │ ├── __init__.py │ ├── __main__.py │ ├── _compat/ │ │ ├── README.md │ │ ├── __init__.py │ │ ├── forge_data.py │ │ ├── motd_transformers.py │ │ └── status_response.py │ ├── _net/ │ │ ├── __init__.py │ │ ├── address.py │ │ └── dns.py │ ├── _protocol/ │ │ ├── __init__.py │ │ ├── bedrock_client.py │ │ ├── connection.py │ │ ├── java_client.py │ │ ├── legacy_client.py │ │ └── query_client.py │ ├── _utils/ │ │ ├── __init__.py │ │ ├── deprecation.py │ │ ├── general.py │ │ └── retry.py │ ├── motd/ │ │ ├── __init__.py │ │ ├── _simplifies.py │ │ ├── _transformers.py │ │ └── components.py │ ├── py.typed │ ├── responses/ │ │ ├── __init__.py │ │ ├── _raw.py │ │ ├── base.py │ │ ├── bedrock.py │ │ ├── forge.py │ │ ├── java.py │ │ ├── legacy.py │ │ └── query.py │ └── server.py ├── pyproject.toml └── tests/ ├── __init__.py ├── helpers.py ├── motd/ │ ├── __init__.py │ ├── conftest.py │ ├── test_components.py │ ├── test_motd.py │ ├── test_simplifies.py │ └── test_transformers.py ├── net/ │ ├── __init__.py │ └── test_address.py ├── protocol/ │ ├── __init__.py │ ├── test_async_support.py │ ├── test_bedrock_client.py │ ├── test_connection.py │ ├── test_java_client.py │ ├── test_java_client_async.py │ ├── test_legacy_client.py │ ├── test_query_client.py │ ├── test_query_client_async.py │ └── test_timeout.py ├── responses/ │ ├── __init__.py │ ├── conftest.py │ ├── test_base.py │ ├── test_bedrock.py │ ├── test_forge_data.py │ ├── test_java.py │ ├── test_legacy.py │ └── test_query.py ├── test_cli.py ├── test_compat.py ├── test_server.py └── utils/ ├── __init__.py ├── test_deprecation.py ├── test_general.py └── test_retry.py