Metadata-Version: 2.4
Name: adk-dynamodb-session
Version: 0.0.5
Summary: Session Service with DynamoDB as the backend for Google ADK
Project-URL: repository, https://github.com/ksachdeva/adk-dynamodb-session
Author: Sachdeva, Kapil
License-File: LICENSE
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.11
Requires-Dist: boto3>=1.38.38
Requires-Dist: google-adk>=1.5.0
Requires-Dist: httpx>=0.28.1
Requires-Dist: pynamodb>=6.1.0
Requires-Dist: types-boto3[essential]>=1.38.38
Description-Content-Type: text/markdown

# DynamoDB as the backed for Session Service

This package provides the implementation of `BaseSessionService` in Google ADK that
uses DynamoDB as the backend

## Install

```bash
uv add adk-dynamodb-session
```

## Sample Application

The sample application is using `Ollama` and the `dynamodb-local`

### Start dynamodb-local using docker

Do this on your machine (not from the dev container)

```bash
cd <path_to_adk_dynamodb_session>/test-data
docker compose -f dynamodb-local.yaml up
```

### Run the sample app

Do this from within the devcontainer

```bash
uv run sample
```

## Run tests (again local DynamoDB)

```bash
uv run poe test
```