mirror of
https://github.com/qdrant/qdrant.git
synced 2026-07-28 05:31:06 -05:00
* Cleanup README.md * Rename `PyResult` into `Result` * Rename `interface` module into `types` and simplify imports `wildcard::goes::brrr::*` * Add `PointId` conversion * Add `Payload` conversion * fixup! Add `Payload` conversion Avoid cloning `Payload` for output conversion * fixup! Add `PointId` conversion Fix example * review fixes #1: fix uuid parsing, avoid .into, use custom types * review fixes #2: rewrite point id to avoid chain if * review fixes #3: allow ot use uuid + remove comment --------- Co-authored-by: Andrey Vasnetsov <andrey@vasnetsov.com>
27 lines
315 B
Markdown
27 lines
315 B
Markdown
# Python Bindings for Qdrant Edge
|
|
|
|
Setup environment
|
|
|
|
```bash
|
|
python -m venv .venv
|
|
source .venv/bin/activate
|
|
|
|
pip install --user maturin
|
|
```
|
|
|
|
Build and install the package
|
|
|
|
```bash
|
|
cd lib/edge/python
|
|
maturin develop --no-default-features
|
|
```
|
|
|
|
Run example
|
|
|
|
```bash
|
|
cd examples
|
|
mkdir shard
|
|
|
|
python qdrant-edge.py
|
|
```
|