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.
2 parents c5fac88 + 771f480 commit cc7a69eCopy full SHA for cc7a69e
.code-samples.meilisearch.yaml
@@ -303,7 +303,7 @@ getting_started_add_documents_md: |-
303
[About this SDK](https://github.com/meilisearch/meilisearch-python/)
304
getting_started_search_md: |-
305
```python
306
- index.search('botman')
+ client.index('movies').search('botman')
307
```
308
309
@@ -353,4 +353,4 @@ add_movies_json_1: |-
353
354
json_file = open('movies.json')
355
movies = json.load(json_file)
356
- index.add_documents(movies)
+ client.index('movies').add_documents(movies)
0 commit comments