Go to file
sati.ac f02375bfe9 fix(SatiSocket): revert call fix 2023-09-08 15:52:49 +03:00
sati fix(SatiSocket): revert call fix 2023-09-08 15:52:49 +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 docs: fix example 2023-09-02 08:25:57 +03:00
pyproject.toml fix(SatiSocket): revert call fix 2023-09-08 15:52:49 +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())