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 85cd780 commit 73f9905Copy full SHA for 73f9905
.code-samples.meilisearch.yaml
@@ -315,6 +315,17 @@ add_movies_json_1: |-
315
json_file = open('movies.json')
316
movies = json.load(json_file)
317
client.index('movies').add_documents(movies)
318
+landing_getting_started_1: |-
319
+ client = meilisearch.Client('http://127.0.0.1:7700')
320
+
321
+ client.index('movies').add_documents([
322
+ { "id": 1, "title": 'Carol' },
323
+ { "id": 2, "title": 'Wonder Woman' },
324
+ { "id": 3, "title": 'Life of Pi' },
325
+ { "id": 4, "title": 'Mad Max: Fury Road' },
326
+ { "id": 5, "title": 'Moana' },
327
+ { "id": 6, "title": 'Philadelphia'}
328
+ ])
329
documents_guide_add_movie_1: |-
330
client.index('movies').add_documents([{
331
'movie_id': '123sq178',
0 commit comments