r6sapi is an easy-to-use asynchronous API for rainbow six siege, written in python. To use it you'll need to use your ubisoft email and password
To install this module, simply run
pip install r6sapi
http://rainbowsixsiege-python-api.readthedocs.io/en/latest/
import asyncio
import r6sapi as api
async def run():
auth = api.Auth("email", "password")
player = await auth.get_player("billy_yoyo", api.Platforms.UPLAY)
operator = await player.get_operator("sledge")
print(operator.kills)
await auth.close()
asyncio.get_event_loop().run_until_complete(run())
- nothing for now, open an issue if you'd like any new feature added.
MIT