Metadata-Version: 2.4
Name: langgraph_dynamodb_checkpoint
Version: 0.1.1
Summary: DynamoDB checkpoint saver implementation for LangGraph
Author-email: Kamaal <skamalj@github.com>
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Requires-Dist: boto3
Requires-Dist: botocore
Requires-Dist: langchain-core
Requires-Dist: langgraph
Provides-Extra: dev
Requires-Dist: black; extra == 'dev'
Requires-Dist: isort; extra == 'dev'
Requires-Dist: mypy; extra == 'dev'
Requires-Dist: pytest-cov; extra == 'dev'
Requires-Dist: pytest>=7.0; extra == 'dev'
Description-Content-Type: text/markdown

# LangGraph DynamoDB Checkpoint Saver

## Overview

The `langgraph_dynamodb_checkpoint` module provides an implementation for saving checkpoints in DynamoDB for LangGraph applications. 

## Installation

To install the module, ensure you have Python 3.9 or higher and use the following command:

`pip install langgraph_dynamodb_checkpoint
`

## Usage

Below is a basic example of how to use the DynamoDB Checkpoint Saver in your LangGraph application.

`
from langgraph_dynamodb_checkpoint.dynamodbSaver import DynamoDBSaver
`
# Initialize the DynamoDB Saver
`
saver = DynamoDBSaver(table_name='your_table_name', max_read_request_unit=10, max_write_request_unit=10)
`