meilisearch-python-sdk
An async and sync Python client for the Meilisearch API
파일 탐색기
최종 버전 다운로드 (.zip)- docs_publish.yml
- nightly_testing.yml
- prek_update.yml
- pypi_publish.yml
- release-drafter.yml
- testing.yml
- FUNDING.yml
- release-draft-template.yaml
- renovate.json5
- add_in_batches.png
- searches.png
- small_movies.json
- custom.css
- umami.js
- footer.html
- .nojekyll
- async_client_api.md
- async_index_api.md
- client_api.md
- CNAME
- decorators_api.md
- index.md
- index_api.md
- json_handler.md
- plugins.md
- pydantic.md
- __init__.py
- conftest.py
- test_async_examples.py
- test_examples.py
- .gitignore
- __init__.py
- add_documents_decorator.py
- add_documents_in_batches.py
- async_add_documents_decorator.py
- async_add_documents_in_batches.py
- async_documents_and_search_results.py
- async_search_tracker.py
- async_update_settings.py
- documents_and_search_results.py
- fastapi_example.py
- orjson_example.py
- pyproject.toml
- README.md
- requirements.txt
- search_tracker.py
- update_settings.py
- __init__.py
- _async_client.py
- _base_client.py
- _client.py
- _common.py
- __init__.py
- _common.py
- async_index.py
- index.py
- __init__.py
- batch.py
- client.py
- documents.py
- health.py
- index.py
- search.py
- settings.py
- task.py
- version.py
- webhook.py
- __init__.py
- _batch.py
- _http_requests.py
- _task.py
- _utils.py
- _version.py
- decorators.py
- errors.py
- json_handler.py
- plugins.py
- py.typed
- types.py
- __init__.py
- conftest.py
- test_async_client.py
- test_async_documents.py
- test_async_index.py
- test_async_index_plugins.py
- test_async_search.py
- test_client.py
- test_decorators.py
- test_documents.py
- test_errors.py
- test_http_requests.py
- test_index.py
- test_index_plugins.py
- test_json_handler.py
- test_search.py
- test_settings_models.py
- test_utils.py
- test_version.py
- .gitignore
- codecov.yml
- CONTRIBUTING.md
- docker-compose.https.yml
- docker-compose.yml
- justfile
- LICENSE
- mkdocs.yaml
- prek.toml
- pyproject.toml
- README.md
- uv.lock
# 설치 가이드
1. 코드 내려받기
git clone https://github.com/sanders41/meilisearch-python-sdk
깃허브에서 프로젝트 코드 전체를 내 컴퓨터로 내려받습니다.
cd meilisearch-python-sdk
방금 내려받은 프로젝트 폴더 안으로 이동합니다.
2. 공식 설치 스크립트
쉬움 추천사전 준비물
- Python 3 pip 명령어를 쓰려면 Python이 필요합니다.
pip install meilisearch-python-sdk
PyPI에 배포된 패키지를 바로 설치합니다. 소스 클론이 필요 없습니다.
pip install meilisearch-python-sdk[orjson]
PyPI에 배포된 패키지를 바로 설치합니다. 소스 클론이 필요 없습니다.
설치 후 새 터미널을 열고, 프로그램의 버전 확인 명령(예: --version)으로 정상 설치됐는지 확인하세요.
이 레포의 README에 적힌 실제 명령어를 그대로 가져왔습니다.
3. Docker
쉬움사전 준비물
- Git GitHub에서 프로젝트 코드를 내려받으려면 필요합니다.
- Docker Desktop 컨테이너를 빌드하고 실행하려면 필요합니다. 설치 후 실행해서 백그라운드에 켜두세요.
docker pull getmeili/meilisearch:latest
이 명령어를 터미널에 그대로 입력해 실행하세요.
docker run -it --rm -p 7700:7700 getmeili/meilisearch:latest ./meilisearch --master-key=masterKey
빌드된 이미지를 실제 컨테이너로 실행합니다.
터미널에 docker compose ps 를 입력해 컨테이너들이 Up 상태인지 확인하세요. README에 포트 번호가 적혀있다면 브라우저에서 http://localhost:포트번호 로 접속해보세요.
이 레포의 README에 적힌 실제 명령어를 그대로 가져왔습니다.
4. Python
쉬움사전 준비물
pip install meilisearch-python-sdk
PyPI에 배포된 패키지를 바로 설치합니다. 소스 클론이 필요 없습니다.
pip install meilisearch-python-sdk[orjson]
PyPI에 배포된 패키지를 바로 설치합니다. 소스 클론이 필요 없습니다.
에러 메시지 없이 실행되고 터미널에 안내 문구가 출력되면 정상입니다.
이 레포의 README에 적힌 실제 명령어를 그대로 가져왔습니다.
// repository documentation
Was this content helpful?
(0 ratings)
