A simple python implementation for the Osu! api.
This library is developed for Uso! bot, a discord recommendation bot for osu beatmaps
- Python 3.6+ (anterior versions might be supported but haven't been tested.)
- The aiohttp library : Install instructions
- An internet connexion
Open a terminal and write
pip install git+https://github.com/Renondedju/Osu.py
Or from the source
$ git clone https://github.com/Renondedju/Osu.py
$ cd Osu.py
$ pip install .
import asyncio
from pyosu import OsuApi
async def main():
api = OsuApi('Your api key here')
bests = await api.get_user_bests('Renondedju')
for best in bests:
print(best.__dict__)
if __name__ == '__main__':
asyncio.run(main())
Link to the docs
To get the current version of the library simply write and execute :
import pyosu #Make sure your import path is the right one
print(pyosu.__version__)
Link to the chagelogs
Thanks to @ppy for the osu api
Osu.py is released under the MIT License. Check the license for more details.