Skip to content

Sendou.py¤

An async Python library for interacting with the Sendou.ink API.

Not an official library!

This library is maintained by Inkling Performance Labs Productions

Dependencies¤

Installation¤

pip install sendou.py

Supported Endpoints¤

  • Get user
  • Get Calendar Entries
  • Get Tournament Info
  • Get Tournament Teams
  • Get Tournament Brackets
    • Get Tournament Match Info

Usage¤

import sendou
import asyncio

async def run():
    client = sendou.Client("API_KEY")
    player = await client.get_user("USER_ID")
    print(player.name)

asyncio.run(run())

Getting an API Key¤

To use this library, you must have an API key. You need to DM Sendou for an API Key currently.