Brawlstars
Client for interacting with the Brawl Stars API.
Install / Use
/learn @umbresp/BrawlstarsREADME
BrawlStars
Introduction
This is a python sync/async wrapper for the brawl stars API. Docs in progress!
Installation
pip install brawlstars for the stable version
pip install git+https://github.com/umbresp/brawlstars for the beta version
Examples
With Synchronous Client
import brawlstars
client = brawlstars.Client(token="your token here", timeout=5)
player = client.get_player(tag="Q8P2ULP")
print(player.name + " (#" + player.tag + ")") # Prints "Dreemurr (#Q8P2ULP)"
With Asynchronous Client
import brawlstars
import asyncio
async def get_stats():
client = brawlstars.AsyncClient(token="your token here", timeout=5)
player = await client.get_player(tag="Q8P2ULP")
print(player.name + " (#" + player.tag + ")") # Prints "Dreemurr (#Q8P2ULP)"
eventLoop = asyncio.get_event_loop()
eventLoop.run_until_complete(get_stats())
Related Skills
imsg
341.6kiMessage/SMS CLI for listing chats, history, and sending messages via Messages.app.
node-connect
341.6kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
claude-opus-4-5-migration
84.6kMigrate prompts and code from Claude Sonnet 4.0, Sonnet 4.5, or Opus 4.1 to Opus 4.5
frontend-design
84.6kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
