Skip to content

Seluj78/meilisearch-python

Β 
Β 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

1 Commit
Β 
Β 

Repository files navigation

Meilisearch Python Client

Licence

The python client for MeiliSearch API.

MeiliSearch provides an ultra relevant and instant full-text search. Our solution is open-source and you can check out our repository here.
You can also use MeiliSearch as a service by registering on meilisearch.com and use our hosted solution.

πŸ”§ Installation

πŸš€ Getting started

Here is a quickstart to create an index and add documents.

🎬 Examples

You can check out the API documentation.

Search

Basic search

{
    "hits": [
        {
            "id": 456,
            "title": "Le Petit Prince",
            "_formatted": {
                "id": 456,
                "title": "Le Petit Prince"
            }
        },
        {
            "id": 4,
            "title": "Harry Potter and the Half-Blood Prince",
            "_formatted": {
                "id": 4,
                "title": "Harry Potter and the Half-Blood Prince"
            }
        }
    ],
    "offset": 0,
    "limit": 20,
    "processingTimeMs": 13,
    "query": "prince"
}

Custom search

All the supported options are described in this documentation section.

{
    "hits": [
        {
            "id": 456,
            "title": "Le Petit Prince",
            "_formatted": {
                "id": 456,
                "title": "Le Petit Prince"
            }
        }
    ],
    "offset": 0,
    "limit": 1,
    "processingTimeMs": 10,
    "query": "prince"
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published