Metadata-Version: 2.4
Name: loveconnet
Version: 1.0.0
Summary: Official LoveConnet Developer API SDK for Python — Verified Human Identity Platform
Author-email: "LoveConnet Inc." <developers@loveconnet.com>
License: MIT
Project-URL: Homepage, https://loveconnet.com/developers
Project-URL: Documentation, https://loveconnet.com/developers/docs
Project-URL: Repository, https://github.com/loveconnet/sdk-python
Project-URL: Issues, https://github.com/loveconnet/sdk-python/issues
Keywords: loveconnet,oauth,identity,verification,api,sdk
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
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
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.28.0

# LoveConnet SDK for Python

Official SDK for the **LoveConnet Developer API** — the world's first Verified Human Identity Platform.

## Installation

```bash
pip install loveconnet
```

## Quick Start

```python
from loveconnet import LoveConnetClient

client = LoveConnetClient(api_key="lc_live_your_api_key_here")

# Get user profile
profile = client.get_user_profile(user_token="user_token_here")
print(profile["name"], profile["bio"])

# Verify user identity
verification = client.get_verification_status(user_token="user_token_here")
print(verification["face_verified"])  # True/False

# Screen text for safety
result = client.screen_text("Hello world")
print(result["is_safe"])  # True
```

## Features

- ✅ Auto-retry with exponential backoff
- ✅ Comprehensive error handling
- ✅ Rate limit awareness
- ✅ Python 3.8+ support

## Documentation

Full API docs: [https://loveconnet.com/developers/docs](https://loveconnet.com/developers/docs)

## License

MIT
