from rubinobot import Client
from asyncio import run
client = Client('YOUR-AUTH')
async def main():
results = await client.get_me()
print(results)
run(main())
and
from rubinobot import Client
from asyncio import run
client = Client('YOUR-AUTH')
async def main():
results = await client.follow('followee_id')
print(results)
run(main())
pip install rubinobot -U
Note
Documents will be posted soon