API wrapper for SP servers written in Python.
Requires Python 3.8 or higher
Windows
pip install pyspapi
Linux/macOS
pip3 install pyspapi
from pyspapi import SPAPI
from asyncio import get_event_loop
spapi = SPAPI(card_id='CARD_ID', token='TOKEN')
async def main():
print(await spapi.balance)
loop = get_event_loop()
loop.run_until_complete(main())
More examples can be found in the examples