You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the `updateId`, you can check the status (`processed` or `failed`) of your documents addition thanks to this [method](https://docs.meilisearch.com/references/updates.html#get-an-update-status).
79
79
80
-
#### Search in index<!-- omit in toc -->
80
+
#### Basic Search<!-- omit in toc -->
81
81
82
82
```python
83
83
# MeiliSearch is typo-tolerant:
@@ -98,6 +98,29 @@ Output:
98
98
}
99
99
```
100
100
101
+
#### Custom Search <!-- omit in toc -->
102
+
103
+
All the supported options are described in [this documentation section](https://docs.meilisearch.com/guides/advanced_guides/search_parameters.html).
104
+
105
+
```python
106
+
index.search('prince', { 'limit': 1 })
107
+
```
108
+
109
+
```json
110
+
{
111
+
"hits": [
112
+
{
113
+
"book_id": 456,
114
+
"title": "Le Petit Prince"
115
+
}
116
+
],
117
+
"offset": 0,
118
+
"limit": 1,
119
+
"processingTimeMs": 10,
120
+
"query": "prince"
121
+
}
122
+
```
123
+
101
124
## 🤖 Compatibility with MeiliSearch
102
125
103
126
This package only guarantees the compatibility with the [version v0.15.0 of MeiliSearch](https://github.com/meilisearch/MeiliSearch/releases/tag/v0.15.0).
0 commit comments