An API wrapper for ChillBot's API.
pip install -U ChillBot.py
Here's an example where you can get the user top 10 music data
import asyncio
from ChillBot import Music
async def main():
data = await Music.get_top_ten("123") # Replace 123 with Discord user ID
print(data)
asyncio.run(main())