Releases: Veria-Protocol/veria-python
Releases · Veria-Protocol/veria-python
v0.1.0 - Initial Release
Veria Python SDK v0.1.0
Initial release of the official Veria Compliance API SDK for Python.
Features
- Full type hints for IDE support
- Supports Ethereum addresses, ENS names, Solana addresses, and IBANs
- Configurable timeout and base URL
- Proper error handling with typed exceptions
- Context manager support for automatic cleanup
Installation
pip install veriaQuick Start
from veria import VeriaClient
client = VeriaClient(api_key='veria_live_xxxxxxxxxxxx')
result = client.screen('0x742d35...')
print(result.risk, result.score)
if result.should_block():
print('Transaction blocked')See the README for full documentation.