@@ -58,7 +58,7 @@ def get_indexes(self):
58
58
Returns
59
59
-------
60
60
indexes: list
61
- List of indexes in dictionnary format. (e.g [{ 'uid': 'movies' 'primaryKey': 'objectID' }])
61
+ List of indexes in dictionary format. (e.g [{ 'uid': 'movies' 'primaryKey': 'objectID' }])
62
62
"""
63
63
return Index .list_all (self .config )
64
64
@@ -78,7 +78,7 @@ def get_index(self, uid):
78
78
Returns
79
79
-------
80
80
index : Index
81
- An Index instance containing the information the fetched index
81
+ An Index instance containing the information the fetched index.
82
82
"""
83
83
index_dict = Index (self .config , uid ).fetch_info ()
84
84
return Index (self .config , index_dict ['uid' ], index_dict ['primaryKey' ])
@@ -137,7 +137,7 @@ def get_all_stats(self):
137
137
Returns
138
138
-------
139
139
stats: `dict`
140
- Dictionnary containing stats about your MeiliSearch instance.
140
+ Dictionary containing stats about your MeiliSearch instance.
141
141
"""
142
142
return self .http .get (self .config .paths .stat )
143
143
@@ -149,7 +149,7 @@ def health(self):
149
149
Raises
150
150
----------
151
151
HTTPError
152
- If MeiliSearch is not healthy
152
+ If MeiliSearch is not healthy.
153
153
"""
154
154
return self .http .get (self .config .paths .health )
155
155
@@ -187,7 +187,7 @@ def version(self):
187
187
return self .get_version ()
188
188
189
189
def create_dump (self ):
190
- """Triggers the creation of a MeiliSearch dump.
190
+ """Trigger the creation of a MeiliSearch dump.
191
191
192
192
Returns
193
193
----------
@@ -198,7 +198,7 @@ def create_dump(self):
198
198
return self .http .post (self .config .paths .dumps )
199
199
200
200
def get_dump_status (self , uid ):
201
- """Retrieves the status of a MeiliSearch dump creation.
201
+ """Retrieve the status of a MeiliSearch dump creation.
202
202
203
203
Parameters
204
204
----------
0 commit comments