Skip to content

Releases: Veria-Protocol/veria-python

v0.1.0 - Initial Release

24 Dec 22:00

Choose a tag to compare

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 veria

Quick 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.