Skip to main content

Shared services for TinyAI microservices platform

Project description

TinySDK

Shared service clients for the TinyAI microservices platform — MongoDB, MinIO, RabbitMQ, and structured logging with a consistent interface.

Installation

pip install tinysdk

Quick Start

from tinysdk import TinyDBService, TinyStorageService, TinyMessageService, TinyMessageServiceSync, TinyLogger

# MongoDB
db = TinyDBService()
doc_id = db.create("users", {"name": "John", "email": "john@example.com"})
users  = db.read("users", filter={"name": "John"})
count  = db.update("users", {"name": "John"}, {"$set": {"active": True}})
count  = db.delete("users", {"name": "John"})
exists = db.exists("users", {"email": "john@example.com"})
ids    = db.create_multiple("users", [{"name": "Alice"}, {"name": "Bob"}])
db.close()

# MinIO / S3
storage = TinyStorageService()
storage.upload_file("my-bucket", "file.txt", buffer)          # file_size auto-detected
storage.upload_file("my-bucket", "file.txt", buffer, 1024)    # or pass explicitly
file_buffer, name = storage.download_file("my-bucket", "file.txt")
storage.upload_folder("my-bucket", "/local/folder")
storage.download_folder("my-bucket", "folder-name", "/local/dest")
storage.close()

# RabbitMQ (async, event-driven)
def handler(msg: dict):
    print(msg)

svc = TinyMessageService(queue_settings=[("my-queue", handler)])
svc.publish("my-queue", {"task": "run"})
svc.run()  # blocks, starts IOLoop

# RabbitMQ (sync, blocking)
with TinyMessageServiceSync() as svc:
    svc.publish("my-queue", {"task": "run"})

# Logger
logger = TinyLogger()
logger.log("something happened", level="INFO", context={"key": "value"})
logger.start_heartbeat()   # emits periodic HEARTBEAT events
logger.stop_heartbeat()    # clean shutdown

doc_logger = logger.for_document("doc-id-123")
doc_logger.log("processing started")

Configuration

All clients read credentials from environment variables.

Service Variable Example
MongoDB DB_LINK mongodb://mongo:27017
MongoDB DB_NAME tinyDatabase
MinIO MINIO_ENDPOINT minio:9000
MinIO MINIO_ACCESSKEY minioadmin
MinIO MINIO_SECRETKEY minioadmin
RabbitMQ RABBITMQ_HOST rabbitmq
RabbitMQ RABBITMQ_PORT 5672
RabbitMQ RABBITMQ_USER guest
RabbitMQ RABBITMQ_PASS guest
Logger SERVICE_NAME my-service
Logger CLUSTER prod
Logger NAMESPACE default
Logger LOG_LEVEL INFO
Logger HEARTBEAT_INTERVAL 30

Credentials can also be passed directly as constructor arguments.

License

MIT

Project details


Download files

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

Source Distribution

tinysdk-0.4.1.tar.gz (35.0 kB view details)

Uploaded Source

Built Distribution

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

tinysdk-0.4.1-py3-none-any.whl (27.9 kB view details)

Uploaded Python 3

File details

Details for the file tinysdk-0.4.1.tar.gz.

File metadata

  • Download URL: tinysdk-0.4.1.tar.gz
  • Upload date:
  • Size: 35.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tinysdk-0.4.1.tar.gz
Algorithm Hash digest
SHA256 0a015df2ec743a162fbadf267bc9487f392839cc008aa8e77613ae11f13fd74e
MD5 3484621015d83f6f3f54b711ced0366b
BLAKE2b-256 514cecef4e72e1a0596bda6063eeaca5e6175e69c1c58a79f4c1ffcc8270920b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tinysdk-0.4.1.tar.gz:

Publisher: publish.yml on synapzegmbh/TinySDK

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tinysdk-0.4.1-py3-none-any.whl.

File metadata

  • Download URL: tinysdk-0.4.1-py3-none-any.whl
  • Upload date:
  • Size: 27.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tinysdk-0.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 ff8f948c1dc684a2a19adb5814012209f5d990d57ecdc5729ac6232cf980565a
MD5 80583b45f7134673896d14d27f6a2c03
BLAKE2b-256 37a19f3021179780055da9cf8be1343b3ad0bd2af931020ce85164899e277f32

See more details on using hashes here.

Provenance

The following attestation bundles were made for tinysdk-0.4.1-py3-none-any.whl:

Publisher: publish.yml on synapzegmbh/TinySDK

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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