I added a sync client option to meilisearch-python-async at which point the name didn't make sense any more so I renamed it meilisearch-python-sdk for version 2.0.0.
I made the changes needed here to update to the new client. The only difference from before is Client is now AsyncClient, and wait_for_task is a method in the client to make sure the correct wait type (async in this case) is used.
I added a sync client option to
meilisearch-python-async
at which point the name didn't make sense any more so I renamed itmeilisearch-python-sdk
for version 2.0.0.I made the changes needed here to update to the new client. The only difference from before is
Client
is nowAsyncClient
, andwait_for_task
is a method in the client to make sure the correct wait type (async in this case) is used.