File tree 1 file changed +5
-13
lines changed 1 file changed +5
-13
lines changed Original file line number Diff line number Diff line change @@ -397,12 +397,11 @@ landing_getting_started_1: |-
397
397
])
398
398
getting_started_check_task_status : |-
399
399
client.get_task(0)
400
- getting_started_add_documents_md : |-
401
- ```bash
402
- pip3 install meilisearch
403
- ```
400
+ getting_started_add_documents : |-
401
+ # In the command line:
402
+ # pip3 install meilisearch
404
403
405
- ```python
404
+ # In your .py file:
406
405
import meilisearch
407
406
import json
408
407
@@ -411,15 +410,8 @@ getting_started_add_documents_md: |-
411
410
json_file = open('movies.json', encoding='utf-8')
412
411
movies = json.load(json_file)
413
412
client.index('movies').add_documents(movies)
414
- ```
415
-
416
- [About this SDK](https://github.com/meilisearch/meilisearch-python/)
417
- getting_started_search_md : |-
418
- ```python
413
+ getting_started_search : |-
419
414
client.index('movies').search('botman')
420
- ```
421
-
422
- [About this SDK](https://github.com/meilisearch/meilisearch-python/)
423
415
getting_started_add_meteorites : |-
424
416
import json
425
417
You can’t perform that action at this time.
0 commit comments