v0.14.0 🐍
Changes
- Introduction of the
index()
method that replacesget_index()
.get_index()
is still available but does HTTP call, so this should be only used to fetch information from the MeiliSearch instance. See our Getting Started to use this package the right way (#175) @curquiza - Add a new attribute in the
Index
class:primary_key
. You can now useclient.get_index('books').primary_key
to access the primary key of your index. (#175) @curquiza - Update dependencies
Breaking changes ⚠️
get_index()
is still present but does an HTTP call. This method should be only used to fetch information from the MeiliSearch instance, not to manipulate anIndex
object in your code base. Useindex()
instead. See our Getting Started to be sure using this SDK the most optimized way. (#175) @curquiza- Rename
info()
intofetch_info()
(#175) @curquiza - Make the
update_index()
method return anIndex
instance (#176) @curquiza
Thanks again to @bidoubiwa, @curquiza, and most of all to @kamyar for having refactored the tests suite! 🎉