Sparta spanner library
Project description
sparta-spanner
Sparta Google Spanner library.
Usage
import os
import sparta.spanner
from sparta.spanner.utils import zip_results
project_id = os.getenv("PROJECT_ID")
instance_id = os.getenv("INSTANCE_ID")
database_id = os.getenv("DATABASE_ID")
db_service = sparta.spanner.DBService(
project_id=project_id,
instance_id=instance_id,
database_id=database_id,
pool_size=5,
session_request_timeout=2,
)
# Blocking
results = zip_results(db_service.execute_sql("SELECT 1 as my_field"))
assert results is not None
assert len(results) == 1
assert results[0] == {"my_field": 1}
# Non-Blocking
def task(snapshot):
result1 = zip_results(snapshot.execute_sql("SELECT 1 as my_field"))
result2 = zip_results(snapshot.execute_sql("SELECT 2 as my_field"))
return result1 + result2
results = await db_service.run_in_snapshot(task, multi_use=True)
assert results is not None
assert len(results) == 2
assert results[0] == {"my_field": 1}
assert results[1] == {"my_field": 2}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Close
Hashes for sparta_spanner-0.2.0rc3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ea2fdd2067b13080b0f5c7824da453b9ad7df7e0876ba444c36c516487922bb3 |
|
MD5 | c8d8a3e78b080a2cff33a60e2b919a7a |
|
BLAKE2b-256 | feeff9757bdeb59875e64cfc783c225087be1ffa9762c2820daab533f9471986 |