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.0rc4-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4e7bcffaf132c7ae95423a02e95170f53707466b299456a240c55921903c3562 |
|
MD5 | be225e253df539a1acdec46ea4bc33c9 |
|
BLAKE2b-256 | c53efbe832f22b0b33a99d3d9d28237c8a41ea314436152c0bd5da3c2497149c |