True Checker for Python
Python client library for True Checker API
How to install
pip install truechecker
How to use
from truechecker import TrueChecker
checker = TrueChecker("your_bot_token")
file_path = "downloads/users.csv"
job = await checker.check_profile(file_path)
print("Job created. ID:", job.id)
job = await checker.get_job_status(job.id)
print("Job state:", job.state)
print("Job progress:", job.progress)
profile = await checker.get_profile("my_bot_username")
print("Bot profile:", profile)
job = await checker.cancel_job(job.id)
print("Job state:", job.state)
await checker.close()
CAUTION: it's not a full code example. Await statements should be used within coroutines only.
Contributing
Before making Pull/Merge Requests, please read the Contributing guidelines