Metadata-Version: 2.1
Name: cleaning_sdk
Version: 0.1.2
Summary: A simple SDK to clean tabular data using a remote API.
Home-page: https://github.com/yourusername/cleaning_sdk
Author: Your Name
Author-email: your.email@example.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests

# veridian-api-python-sdk

A simple SDK to clean tabular data using Veridian's remote API.

## Installation

```bash
pip install cleaning_sdk
```

## Usage

```python
from cleaning_sdk import clean

api_key = "your_api_key"
file_path = "path_to_your_file.csv"
result = clean(file_path, api_key)

print(result)
```
