We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb3abb8 commit 4595eddCopy full SHA for 4595edd
.code-samples.meilisearch.yaml
@@ -332,7 +332,9 @@ documents_guide_add_movie_1: |-
332
'title': 'Amélie Poulain'
333
}])
334
getting_started_check_task_status_md: |-
335
+ ```python
336
client.index('movies').get_task(0)
337
+ ```
338
getting_started_add_documents_md: |-
339
```bash
340
pip3 install meilisearch
@@ -360,7 +362,7 @@ getting_started_add_meteorites: |-
360
362
import json
361
363
364
json_file = open('meteorites.json')
- movies = json.load(json_file)
365
+ meteorites = json.load(json_file)
366
client.index('meteorites').add_documents(meteorites)
367
getting_started_update_rankingRules: |-
368
client.index('movies').update_ranking_rules([
0 commit comments