Metadata-Version: 2.4
Name: lace-client
Version: 0.5.15
Summary: Lace: AI Training Transparency Protocol - Prevent copyright lawsuits with cryptographic proof
Home-page: https://github.com/Aegis-Testing-Technologies/aegis-techspike
Author: Aegis Testing Technologies LLC
Author-email: Aegis Testing Technologies LLC <support@withlace.ai>
License: Apache-2.0
Project-URL: homepage, https://withlace.ai
Project-URL: documentation, https://withlace.ai/docs
Project-URL: Get API Key, https://withlace.ai/request-demo
Keywords: ai,copyright,compliance,training,transparency,legal
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Legal Industry
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: LICENSE-README.md
License-File: NOTICE
Requires-Dist: requests>=2.28.0
Requires-Dist: click>=8.0.0
Requires-Dist: jsonschema<5,>=4.22
Provides-Extra: dev
Requires-Dist: pytest>=7.4; extra == "dev"
Requires-Dist: black>=22.0.0; extra == "dev"
Requires-Dist: ruff>=0.1.0; extra == "dev"
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# Lace Client

Python client for Lace - AI training transparency protocol.

## Installation

```bash
pip install lace-client
```

## Quick Start

```python
import lace

# One-line integration
lace.monitor()

# Create attestation
attestation_id = lace.attest("./training_data")

# Verify after training
result = lace.verify(attestation_id)
```

## Documentation

Full documentation available at https://withlace.ai

## License

Apache 2.0
