Skip to main content

isA Common

Shared async Python client library for the isA platform.

Overview

isa-common provides async Python clients for interacting with isA Cloud infrastructure services. All clients use async with context managers and share a common base class (AsyncBaseClient).

Infrastructure Clients (require running services)

Client Service Default Port Protocol
AsyncRedisClient Redis 6379 gRPC proxy
AsyncPostgresClient PostgreSQL 5432 gRPC proxy
AsyncNeo4jClient Neo4j 7687 gRPC proxy
AsyncNATSClient NATS 4222 gRPC proxy
AsyncMQTTClient MQTT 1883 gRPC proxy
AsyncMinioClient MinIO 9000 gRPC proxy
AsyncQdrantClient Qdrant 6333 gRPC proxy
AsyncDuckDBClient DuckDB embedded native

Local-Mode Clients (no external services needed)

Drop-in alternatives for desktop/offline use. Same API surface, backed by local storage:

Local Client Replaces Backed By
AsyncSQLiteClient AsyncPostgresClient SQLite file
AsyncLocalStorageClient AsyncMinioClient Local filesystem
AsyncChromaClient AsyncQdrantClient ChromaDB (embedded)
AsyncMemoryClient AsyncRedisClient In-memory dict

When to use local clients: Use local-mode clients when running on desktop/ICP without cloud infrastructure, for development/testing without Docker, or when you need offline-capable storage.

Installation

pip install isa-common

Quick Start

from isa_common import AsyncRedisClient

async with AsyncRedisClient(host="localhost", port=6379, user_id="my-user") as client:
    health = await client.health_check()
    await client.set("key", "value")
    value = await client.get("key")

Using Local-Mode Clients

from isa_common import AsyncSQLiteClient, AsyncLocalStorageClient

# SQLite instead of PostgreSQL
async with AsyncSQLiteClient(database="app.db", user_id="my-user") as db:
    await db.query("SELECT * FROM users")

# Local filesystem instead of MinIO
async with AsyncLocalStorageClient(base_path="./storage", user_id="my-user") as storage:
    await storage.put_object("my-bucket", "file.txt", b"contents")

Development

Run tests (requires services or use local clients):

# Run individual service tests
python tests/redis/test_async_redis.py
python tests/duck/test_async_duckdb.py

# Run all tests via Makefile
make test

Contract Coverage

See tests/contract_coverage.md for the mapping between CDD contract IDs (BR/EC/ER) and test functions.

License

Copyright © 2024 isA Platform

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

isa_common-0.6.5.tar.gz (138.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

isa_common-0.6.5-py3-none-any.whl (153.8 kB view details)

Uploaded Python 3

File details

Details for the file isa_common-0.6.5.tar.gz.

File metadata

  • Download URL: isa_common-0.6.5.tar.gz
  • Upload date:
  • Size: 138.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.8

File hashes

Hashes for isa_common-0.6.5.tar.gz
Algorithm Hash digest
SHA256 e5c471468ecbe2ad58de43e950cf5a699b946eebda6ee9e20b91803f0275f660
MD5 58bf23dec8ed344ccfb11cd390cabfb1
BLAKE2b-256 c45d2714b7cfa5ade972bdd433516f2bb7e4bb11401673a54b87ff97b9646c55

See more details on using hashes here.

File details

Details for the file isa_common-0.6.5-py3-none-any.whl.

File metadata

  • Download URL: isa_common-0.6.5-py3-none-any.whl
  • Upload date:
  • Size: 153.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.8

File hashes

Hashes for isa_common-0.6.5-py3-none-any.whl
Algorithm Hash digest
SHA256 f4bd2ae67b31f40e75bf4a5625b4d291bd356bc51f0b2cd2b381521b30f0bb6a
MD5 7e5c9219bbf2bd0b9d6120e9d9d3f848
BLAKE2b-256 407214a6c6391778ac90f0e762ef42e898b33f3cbcbd46ccd14b0e407cc8bd1f

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page