This version introduces features released on Meilisearch v1.1.0 :tada:
Check out the changelog of [Meilisearch v1.1.0](https://github.com/meilisearch/meilisearch/releases/tag/v1.1.0) for more information on the changes.
⚠️ Breaking changes
* Change error names from MeiliSerach to Meilisearch (720) sanders41
🚀 Enhancements
- Add the ability to provide a specific `csv-delimiter` when adding and updating documents in CSV format (716) alallema
- New method `client.multi_search()` provides the possibility to make multiple requests at once (714) alallema
Example:
python
client.multi_search(
[
{'indexUid': 'movies', 'q': 'pooh', 'limit': 5},
{'indexUid': 'movies', 'q': 'nemo', 'limit': 5},
{'indexUid': 'movie_ratings', 'q': 'us'}
]
)
🐛 Bug Fixes
* fix: remove duplicate key on code-samples (727) justkahdri
Thanks again to alallema and sanders41! 🎉