DocsSDKsPython
Python SDK Documentation
Planned Python SDK wrapper documentation.
Planned pip Installation
Our official Python wrapper will be hosted on PyPI:
bash
pip install verilens-sdkPlanned Python SDK Client Usage
Instantiate the SDK and crosscheck statements easily:
python
from verilens import VeriLensclient = VeriLens(api_key="vl_live_example_key_123")result = client.verify(text="Water boiled twice turns toxic due to heavy element accumulation.")print(f"Is Hoax: {result.is_hoax}")print(f"Verdict: {result.verdict}")print(f"Explanation: {result.explanation}")
