1717<p align =" center " >
1818 <a href =" https://badge.fury.io/py/meilisearch " ><img src =" https://badge.fury.io/py/meilisearch.svg " alt =" PyPI version " ></a >
1919 <a href =" https://github.com/meilisearch/meilisearch-python/actions " ><img src =" https://github.com/meilisearch/meilisearch-python/workflows/Tests/badge.svg " alt =" Test Status " ></a >
20- <a href =" https://codecov.io/gh/meilisearch/meilisearch-python " >
21- <img src="https://codecov.io/github/meilisearch/meilisearch-python/coverage.svg?branch=main" alt="Codecov">
22- </a >
2320 <a href =" https://github.com/meilisearch/meilisearch-python/blob/main/LICENSE " ><img src =" https://img.shields.io/badge/license-MIT-informational " alt =" License " ></a >
2421 <a href =" https://ms-bors.herokuapp.com/repositories/57 " ><img src =" https://bors.tech/images/badge_small.svg " alt =" Bors enabled " ></a >
2522</p >
@@ -103,7 +100,7 @@ With the task `uid`, you can check the status (`enqueued`, `canceled`, `processi
103100
104101#### Basic Search <!-- omit in toc -->
105102
106- ``` python
103+ ``` python
107104# Meilisearch is typo-tolerant:
108105index.search(' caorl' )
109106```
@@ -112,17 +109,17 @@ Output:
112109
113110``` json
114111{
115- "hits" : [
116- {
117- "id" : 1 ,
118- "title" : " Carol" ,
119- "genre" : [" Romance" , " Drama" ]
120- }
121- ],
122- "offset" : 0 ,
123- "limit" : 20 ,
124- "processingTimeMs" : 1 ,
125- "query" : " caorl"
112+ "hits" : [
113+ {
114+ "id" : 1 ,
115+ "title" : " Carol" ,
116+ "genre" : [" Romance" , " Drama" ]
117+ }
118+ ],
119+ "offset" : 0 ,
120+ "limit" : 20 ,
121+ "processingTimeMs" : 1 ,
122+ "query" : " caorl"
126123}
127124```
128125
@@ -143,21 +140,21 @@ JSON output:
143140
144141``` json
145142{
146- "hits" : [
147- {
148- "id" : 6 ,
149- "title" : " Philadelphia" ,
150- "_formatted" : {
151- "id" : 6 ,
152- "title" : " <em>Phil</em>adelphia" ,
153- "genre" : [" Drama" ]
154- }
155- }
156- ],
157- "offset" : 0 ,
158- "limit" : 20 ,
159- "processingTimeMs" : 0 ,
160- "query" : " phil"
143+ "hits" : [
144+ {
145+ "id" : 6 ,
146+ "title" : " Philadelphia" ,
147+ "_formatted" : {
148+ "id" : 6 ,
149+ "title" : " <em>Phil</em>adelphia" ,
150+ "genre" : [" Drama" ]
151+ }
152+ }
153+ ],
154+ "offset" : 0 ,
155+ "limit" : 20 ,
156+ "processingTimeMs" : 0 ,
157+ "query" : " phil"
161158}
162159```
163160
@@ -193,7 +190,7 @@ index.search(
193190 {
194191 "id" : 2 ,
195192 "title" : " Wonder Woman" ,
196- "genres" : [" Action" ," Adventure" ]
193+ "genres" : [" Action" , " Adventure" ]
197194 }
198195 ],
199196 "offset" : 0 ,
0 commit comments