Go to file
sati.ac f7dea1ac6a initial commit 2023-09-02 08:23:44 +03:00
sati initial commit 2023-09-02 08:23:44 +03:00
.gitignore initial commit 2023-09-02 08:23:44 +03:00
LICENSE initial commit 2023-09-02 08:23:44 +03:00
README.md initial commit 2023-09-02 08:23:44 +03:00
pyproject.toml initial commit 2023-09-02 08:23:44 +03:00

README.md

sati-ac - python client for sati.ac

NPM version

usage example

import asyncio
from sati import Sati

async def main():
	sati = Sati(token)
	print(await sati.get_balance())
	task = await sati.solve('Turnstile',
		siteKey = '0x4AAAAAAAHMEd1rGJs9qy-0',
		pageUrl = 'https://polygon.sati.ac/Turnstile'
	)
	print(task.result.token)

asyncio.run(main)