Atlas Client
The Python client for the Atlas vector database.
Installation
pip install atlas-db-client
Quick Start
from atlas_db_client import AtlasClient
client = AtlasClient(host="http://localhost:8600")
# Create a collection
collection = client.create_collection(
name="my-collection",
dimension=128,
metric="cosine",
)
# Insert a vector
result = client.insert_vector(
collection_id=collection.id,
vector=[0.1] * 128,
metadata={"label": "example"},
)
# Search
response = client.search(
collection_id=collection.id,
vector=[0.1] * 128,
k=5,
)
for r in response.results:
print(r.id, r.score)
Async Support
from atlas_db_client import AsyncAtlasClient
async with AsyncAtlasClient() as client:
collection = await client.create_collection(
name="my-collection",
dimension=128,
metric="cosine",
)
License
MIT
Release files for atlas-db-client 0.0.2
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| atlas_db_client-0.0.2.tar.gz | 5.8 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| atlas_db_client-0.0.2-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 12.3 kB
Release files / atlas_db_client-0.0.2.tar.gz
| Download URL | atlas_db_client-0.0.2.tar.gz |
|---|---|
| Size | 5.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
fefdcf215e2e737d9b020d5ba6d31312e90b57f6fc217d02f2842a56fd1ac8f3
|
|
BLAKE2b-256 checksum How to use checksums |
fe964746e09f0af893ae18dc90bd6d7e63f819710f08c353885f0cac65d1db9f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.12
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on May 10, 2026.
Transparency logRelease files / atlas_db_client-0.0.2-py3-none-any.whl
| Download URL | atlas_db_client-0.0.2-py3-none-any.whl |
|---|---|
| Size | 6.5 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
56b37f0a3d6d3c2baf4a4f8edf010bc32cd5a3063f89e57f85d5650906caeec9
|
|
BLAKE2b-256 checksum How to use checksums |
5d925a2e073b224323ec6fd6a3f31c4067a8276304a3c44cf2c31326b74aaeb9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.12
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on May 10, 2026.
Transparency log