Skip to content

v0.1.0 - Initial Release

Latest

Choose a tag to compare

@PROACTIVA-US PROACTIVA-US released this 24 Dec 22:00
· 1 commit to main since this 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 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.