Metadata-Version: 2.1
Name: ns_ab_test_sdk
Version: 0.1.0
Summary: A simple A/B testing SDK for recording and saving data
Author: nobody
Author-email: nobody@example.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3
Description-Content-Type: text/markdown

# AB Test SDK

A simple A/B testing SDK for recording and saving data.

## Installation

```bash
pip install ns_ab_test_sdk
```

## Usage

```python
from ns_ab_test_sdk import recorder

# your code...

# Record data
recorder.put("test_key", "test_value")

# your code...
```
