File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -332,7 +332,9 @@ documents_guide_add_movie_1: |-
332
332
'title': 'Amélie Poulain'
333
333
}])
334
334
getting_started_check_task_status_md : |-
335
+ ```python
335
336
client.index('movies').get_task(0)
337
+ ```
336
338
getting_started_add_documents_md : |-
337
339
```bash
338
340
pip3 install meilisearch
@@ -360,7 +362,7 @@ getting_started_add_meteorites: |-
360
362
import json
361
363
362
364
json_file = open('meteorites.json')
363
- movies = json.load(json_file)
365
+ meteorites = json.load(json_file)
364
366
client.index('meteorites').add_documents(meteorites)
365
367
getting_started_update_rankingRules : |-
366
368
client.index('movies').update_ranking_rules([
@@ -503,7 +505,7 @@ document_guide_add_document_primary_key: |-
503
505
'poster': 'https://image.tmdb.org/t/p/w1280/xnopI5Xtky18MPhK40cZAGAOVeV.jpg',
504
506
'overview': 'A boy is given the ability to become an adult superhero in times of need with a single magic word.',
505
507
'release_date': '2019-03-23'
506
- }], reference_number)
508
+ }], ' reference_number' )
507
509
security_guide_search_key_1 : |-
508
510
client = Client('http://127.0.0.1:7700', 'apiKey')
509
511
client.index('patient_medical_records').search()
You can’t perform that action at this time.
0 commit comments