Metadata-Version: 2.1
Name: veridian
Version: 0.1.2
Summary: A simple SDK to clean tabular data using the Veridian API.
Home-page: https://github.com/A-Ravioli/veridian-api-python-sdk
Author: Arav Kumar
Author-email: veridiandata@gmail.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)
```
