33 lines
1.5 KiB
Python
33 lines
1.5 KiB
Python
import meilisearch
|
|
|
|
client = meilisearch.Client('https://ms-9ea4a96f02a8-1969.sfo.meilisearch.io', '117c691a34b21a6651798479ebffd181eb276958')
|
|
|
|
# An index is where the documents are stored.
|
|
index = client.index('movies')
|
|
|
|
documents = [
|
|
{ 'id': 1, 'title': 'Carol', 'genres': ['Romance', 'Drama'] },
|
|
{ 'id': 2, 'title': 'Wonder Woman', 'genres': ['Action', 'Adventure'] },
|
|
{ 'id': 3, 'title': 'Life of Pi', 'genres': ['Adventure', 'Drama'] },
|
|
{ 'id': 4, 'title': 'Mad Max: Fury Road', 'genres': ['Adventure', 'Science Fiction'] },
|
|
{ 'id': 5, 'title': 'Moana', 'genres': ['Fantasy', 'Action']},
|
|
{ 'id': 6, 'title': 'Philadelphia', 'genres': ['Drama'] },
|
|
]
|
|
|
|
# If the index 'movies' does not exist, Meilisearch creates it when you first add the documents.
|
|
index.add_documents(documents) # => { "uid": 0 }', 'masterKey')
|
|
|
|
# An index is where the documents are stored.
|
|
index = client.index('movies')
|
|
|
|
documents = [
|
|
{ 'id': 1, 'title': 'Carol', 'genres': ['Romance', 'Drama'] },
|
|
{ 'id': 2, 'title': 'Wonder Woman', 'genres': ['Action', 'Adventure'] },
|
|
{ 'id': 3, 'title': 'Life of Pi', 'genres': ['Adventure', 'Drama'] },
|
|
{ 'id': 4, 'title': 'Mad Max: Fury Road', 'genres': ['Adventure', 'Science Fiction'] },
|
|
{ 'id': 5, 'title': 'Moana', 'genres': ['Fantasy', 'Action']},
|
|
{ 'id': 6, 'title': 'Philadelphia', 'genres': ['Drama'] },
|
|
]
|
|
|
|
# If the index 'movies' does not exist, Meilisearch creates it when you first add the documents.
|
|
index.add_documents(documents) # => { "uid": 0 } |