Skip to content

Commit 5595790

Browse files
committed
Update README.md
1 parent 35a2962 commit 5595790

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,12 +75,12 @@ client = meilisearch.Client('http://127.0.0.1:7700', 'masterKey')
7575
index = client.index('movies')
7676

7777
documents = [
78-
{ id: 1, title: 'Carol', genres: ['Romance', 'Drama'] },
79-
{ id: 2, title: 'Wonder Woman', genres: ['Action', 'Adventure'] },
80-
{ id: 3, title: 'Life of Pi', genres: ['Adventure', 'Drama'] },
81-
{ id: 4, title: 'Mad Max: Fury Road', genres: ['Adventure', 'Science Fiction'] },
82-
{ id: 5, title: 'Moana', genres: ['Fantasy', 'Action']},
83-
{ id: 6, title: 'Philadelphia', genres: ['Drama'] },
78+
{ "id": 1, "title": "Carol", "genres": ["Romance", "Drama"] },
79+
{ "id": 2, "title": "Wonder Woman", "genres": ["Action", "Adventure"] },
80+
{ "id": 3, "title": "Life of Pi", "genres": ["Adventure", "Drama"] },
81+
{ "id": 4, "title": "Mad Max: Fury Road", "genres": ["Adventure", "Science Fiction"] },
82+
{ "id": 5, "title": "Moana", "genres": ["Fantasy", "Action"]},
83+
{ "id": 6, "title": "Philadelphia", "genres": ["Drama"] },
8484
]
8585

8686
# If the index 'movies' does not exist, MeiliSearch creates it when you first add the documents.

0 commit comments

Comments
 (0)