├── .github ├── FUNDING.yml ├── release-draft-template.yaml ├── renovate.json5 └── workflows │ ├── docs_publish.yml │ ├── nightly_testing.yml │ ├── pypi_publish.yml │ ├── release-drafter.yml │ └── testing.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assets ├── add_in_batches.png └── searches.png ├── codecov.yml ├── datasets └── small_movies.json ├── docker-compose.https.yml ├── docker-compose.yml ├── docs ├── .nojekyll ├── CNAME ├── async_client_api.md ├── async_index_api.md ├── client_api.md ├── css │ └── custom.css ├── decorators_api.md ├── index.md ├── index_api.md ├── js │ └── umami.js ├── json_handler.md ├── overrides │ └── partials │ │ └── footer.html ├── plugins.md └── pydantic.md ├── examples ├── .gitignore ├── README.md ├── __init__.py ├── add_documents_decorator.py ├── add_documents_in_batches.py ├── async_add_documents_decorator.py ├── async_add_documents_in_batches.py ├── async_documents_and_search_results.py ├── async_search_tracker.py ├── async_update_settings.py ├── documents_and_search_results.py ├── fastapi_example.py ├── orjson_example.py ├── pyproject.toml ├── requirements.txt ├── search_tracker.py ├── tests │ ├── __init__.py │ ├── conftest.py │ ├── test_async_examples.py │ └── test_examples.py ├── ujson_example.py └── update_settings.py ├── justfile ├── meilisearch_python_sdk ├── __init__.py ├── _batch.py ├── _client.py ├── _http_requests.py ├── _task.py ├── _utils.py ├── _version.py ├── decorators.py ├── errors.py ├── index │ ├── __init__.py │ ├── _common.py │ ├── async_index.py │ └── index.py ├── json_handler.py ├── models │ ├── __init__.py │ ├── batch.py │ ├── client.py │ ├── documents.py │ ├── health.py │ ├── index.py │ ├── search.py │ ├── settings.py │ ├── task.py │ ├── version.py │ └── webhook.py ├── plugins.py ├── py.typed └── types.py ├── mkdocs.yaml ├── pyproject.toml ├── tests ├── __init__.py ├── conftest.py ├── test_async_client.py ├── test_async_documents.py ├── test_async_index.py ├── test_async_index_plugins.py ├── test_async_search.py ├── test_client.py ├── test_decorators.py ├── test_documents.py ├── test_errors.py ├── test_index.py ├── test_index_plugins.py ├── test_search.py ├── test_settings_models.py ├── test_utils.py └── test_version.py └── uv.lock /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [sanders41] 2 | -------------------------------------------------------------------------------- /.github/release-draft-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/.github/release-draft-template.yaml -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/workflows/docs_publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/.github/workflows/docs_publish.yml -------------------------------------------------------------------------------- /.github/workflows/nightly_testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/.github/workflows/nightly_testing.yml -------------------------------------------------------------------------------- /.github/workflows/pypi_publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/.github/workflows/pypi_publish.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/.github/workflows/testing.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/README.md -------------------------------------------------------------------------------- /assets/add_in_batches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/assets/add_in_batches.png -------------------------------------------------------------------------------- /assets/searches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/assets/searches.png -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/codecov.yml -------------------------------------------------------------------------------- /datasets/small_movies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/datasets/small_movies.json -------------------------------------------------------------------------------- /docker-compose.https.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/docker-compose.https.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | meilisearch-python-sdk.paulsanders.dev 2 | -------------------------------------------------------------------------------- /docs/async_client_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/docs/async_client_api.md -------------------------------------------------------------------------------- /docs/async_index_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/docs/async_index_api.md -------------------------------------------------------------------------------- /docs/client_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/docs/client_api.md -------------------------------------------------------------------------------- /docs/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/docs/css/custom.css -------------------------------------------------------------------------------- /docs/decorators_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/docs/decorators_api.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/index_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/docs/index_api.md -------------------------------------------------------------------------------- /docs/js/umami.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/docs/js/umami.js -------------------------------------------------------------------------------- /docs/json_handler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/docs/json_handler.md -------------------------------------------------------------------------------- /docs/overrides/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/docs/overrides/partials/footer.html -------------------------------------------------------------------------------- /docs/plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/docs/plugins.md -------------------------------------------------------------------------------- /docs/pydantic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/docs/pydantic.md -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/examples/.gitignore -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/add_documents_decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/examples/add_documents_decorator.py -------------------------------------------------------------------------------- /examples/add_documents_in_batches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/examples/add_documents_in_batches.py -------------------------------------------------------------------------------- /examples/async_add_documents_decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/examples/async_add_documents_decorator.py -------------------------------------------------------------------------------- /examples/async_add_documents_in_batches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/examples/async_add_documents_in_batches.py -------------------------------------------------------------------------------- /examples/async_documents_and_search_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/examples/async_documents_and_search_results.py -------------------------------------------------------------------------------- /examples/async_search_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/examples/async_search_tracker.py -------------------------------------------------------------------------------- /examples/async_update_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/examples/async_update_settings.py -------------------------------------------------------------------------------- /examples/documents_and_search_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/examples/documents_and_search_results.py -------------------------------------------------------------------------------- /examples/fastapi_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/examples/fastapi_example.py -------------------------------------------------------------------------------- /examples/orjson_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/examples/orjson_example.py -------------------------------------------------------------------------------- /examples/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/examples/pyproject.toml -------------------------------------------------------------------------------- /examples/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/examples/requirements.txt -------------------------------------------------------------------------------- /examples/search_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/examples/search_tracker.py -------------------------------------------------------------------------------- /examples/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/examples/tests/conftest.py -------------------------------------------------------------------------------- /examples/tests/test_async_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/examples/tests/test_async_examples.py -------------------------------------------------------------------------------- /examples/tests/test_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/examples/tests/test_examples.py -------------------------------------------------------------------------------- /examples/ujson_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/examples/ujson_example.py -------------------------------------------------------------------------------- /examples/update_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/examples/update_settings.py -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/justfile -------------------------------------------------------------------------------- /meilisearch_python_sdk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/meilisearch_python_sdk/__init__.py -------------------------------------------------------------------------------- /meilisearch_python_sdk/_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/meilisearch_python_sdk/_batch.py -------------------------------------------------------------------------------- /meilisearch_python_sdk/_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/meilisearch_python_sdk/_client.py -------------------------------------------------------------------------------- /meilisearch_python_sdk/_http_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/meilisearch_python_sdk/_http_requests.py -------------------------------------------------------------------------------- /meilisearch_python_sdk/_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/meilisearch_python_sdk/_task.py -------------------------------------------------------------------------------- /meilisearch_python_sdk/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/meilisearch_python_sdk/_utils.py -------------------------------------------------------------------------------- /meilisearch_python_sdk/_version.py: -------------------------------------------------------------------------------- 1 | VERSION = "5.5.2" 2 | -------------------------------------------------------------------------------- /meilisearch_python_sdk/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/meilisearch_python_sdk/decorators.py -------------------------------------------------------------------------------- /meilisearch_python_sdk/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/meilisearch_python_sdk/errors.py -------------------------------------------------------------------------------- /meilisearch_python_sdk/index/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/meilisearch_python_sdk/index/__init__.py -------------------------------------------------------------------------------- /meilisearch_python_sdk/index/_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/meilisearch_python_sdk/index/_common.py -------------------------------------------------------------------------------- /meilisearch_python_sdk/index/async_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/meilisearch_python_sdk/index/async_index.py -------------------------------------------------------------------------------- /meilisearch_python_sdk/index/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/meilisearch_python_sdk/index/index.py -------------------------------------------------------------------------------- /meilisearch_python_sdk/json_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/meilisearch_python_sdk/json_handler.py -------------------------------------------------------------------------------- /meilisearch_python_sdk/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meilisearch_python_sdk/models/batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/meilisearch_python_sdk/models/batch.py -------------------------------------------------------------------------------- /meilisearch_python_sdk/models/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/meilisearch_python_sdk/models/client.py -------------------------------------------------------------------------------- /meilisearch_python_sdk/models/documents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/meilisearch_python_sdk/models/documents.py -------------------------------------------------------------------------------- /meilisearch_python_sdk/models/health.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/meilisearch_python_sdk/models/health.py -------------------------------------------------------------------------------- /meilisearch_python_sdk/models/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/meilisearch_python_sdk/models/index.py -------------------------------------------------------------------------------- /meilisearch_python_sdk/models/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/meilisearch_python_sdk/models/search.py -------------------------------------------------------------------------------- /meilisearch_python_sdk/models/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/meilisearch_python_sdk/models/settings.py -------------------------------------------------------------------------------- /meilisearch_python_sdk/models/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/meilisearch_python_sdk/models/task.py -------------------------------------------------------------------------------- /meilisearch_python_sdk/models/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/meilisearch_python_sdk/models/version.py -------------------------------------------------------------------------------- /meilisearch_python_sdk/models/webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/meilisearch_python_sdk/models/webhook.py -------------------------------------------------------------------------------- /meilisearch_python_sdk/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/meilisearch_python_sdk/plugins.py -------------------------------------------------------------------------------- /meilisearch_python_sdk/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meilisearch_python_sdk/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/meilisearch_python_sdk/types.py -------------------------------------------------------------------------------- /mkdocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/mkdocs.yaml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_async_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/tests/test_async_client.py -------------------------------------------------------------------------------- /tests/test_async_documents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/tests/test_async_documents.py -------------------------------------------------------------------------------- /tests/test_async_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/tests/test_async_index.py -------------------------------------------------------------------------------- /tests/test_async_index_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/tests/test_async_index_plugins.py -------------------------------------------------------------------------------- /tests/test_async_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/tests/test_async_search.py -------------------------------------------------------------------------------- /tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/tests/test_client.py -------------------------------------------------------------------------------- /tests/test_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/tests/test_decorators.py -------------------------------------------------------------------------------- /tests/test_documents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/tests/test_documents.py -------------------------------------------------------------------------------- /tests/test_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/tests/test_errors.py -------------------------------------------------------------------------------- /tests/test_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/tests/test_index.py -------------------------------------------------------------------------------- /tests/test_index_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/tests/test_index_plugins.py -------------------------------------------------------------------------------- /tests/test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/tests/test_search.py -------------------------------------------------------------------------------- /tests/test_settings_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/tests/test_settings_models.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/tests/test_version.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanders41/meilisearch-python-sdk/HEAD/uv.lock --------------------------------------------------------------------------------