Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/FeeeeK/VKThingy

Asynchronous api wrapper for the game from vk.com
https://github.com/FeeeeK/VKThingy

vk

Last synced: 2 months ago
JSON representation

Asynchronous api wrapper for the game from vk.com

Awesome Lists containing this project

README

        

# VKSlaves
Asynchronous api wrapper for the game from vk.com called "slaves"

# Example of usage
```python
import asyncio
from vkslaves import SlavesAPI
from vkslaves.errors import SlaveAreLockedError, NotEnoughMoneyError

slaves_api = SlavesAPI(
app_auth="vk_access_token_settings=friends,status&vk_app_id=7794757..."
)

async def main():
await slaves_api.start() # update .me and .slaves
print(slaves_api.me.balance) # get your balance
user = await slaves_api.user(1) # get info about vk.com/id1
print(user.master_id) # get id of user's master
try:
await svales_api.buy_slave(1)
except SlaveAreLockedError:
print(" Oh no :( ")
except NotEnoughMoneyError:
print(" I need more money :( ")

asyncio.run(main())
```

### I'm too lazy to write documentation, just look at the names of the functions and docstrings