Skip to main content

Complete python wrapper for osu! api v2 and v1.

Project description

ossapi (documentation) PyPI version

ossapi is the definitive python wrapper for the osu! api. ossapi has complete coverage of api v2 and api v1, and provides both sync (Ossapi) and async (OssapiAsync) versions for api v2.

If you need support or would like to contribute, feel free to ask in the #ossapi channel of the circleguard discord.

Installation

To install:

pip install ossapi
# or, if you want to use OssapiAsync:
pip install ossapi[async]

To upgrade:

pip install -U ossapi

To get started, read the docs: https://tybug.github.io/ossapi/.

Quickstart

The docs have an in depth quickstart, but here's a super short version for api v2:

from ossapi import Ossapi

# create a new client at https://osu.ppy.sh/home/account/edit#oauth
api = Ossapi(client_id, client_secret)

# see docs for full list of endpoints
print(api.user("tybug").username)
print(api.user(12092800, mode="osu").username)
print(api.beatmap(221777).id)

Async

ossapi provides an async variant, OssapiAsync, which has an identical interface to Ossapi:

import asyncio
from ossapi import OssapiAsync

api = OssapiAsync(client_id, client_secret)

async def main():
    await api.user("tybug")

asyncio.run(main())

Read more about OssapiAsync on the docs.

Lazer

You can retrieve lazer-specific data (scores, leaderboards, etc) with ossapi:

from ossapi import Ossapi

api_lazer = Ossapi(client_id, client_secret, domain="lazer")

# best score on the lazer server (lazer + osu scores combined)
scores = api_lazer.user_scores(12092800, "best")
print(scores[0].pp)

Read more about domains on the docs.

Endpoints

All endpoints for api v2.

API v1 Usage

You can get your api v1 key at https://osu.ppy.sh/home/account/edit#legacy-api.

Basic usage:

from ossapi import OssapiV1

api = OssapiV1("key")
print(api.get_beatmaps(user=53378)[0].submit_date)
print(api.get_match(69063884).games[0].game_id)
print(api.get_scores(221777)[0].username)
print(len(api.get_replay(beatmap_id=221777, user=6974470)))
print(api.get_user(12092800).playcount)
print(api.get_user_best(12092800)[0].pp)
print(api.get_user_recent(12092800)[0].beatmap_id)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ossapi-3.4.4.tar.gz (96.3 kB view details)

Uploaded Source

Built Distribution

ossapi-3.4.4-py3-none-any.whl (92.1 kB view details)

Uploaded Python 3

File details

Details for the file ossapi-3.4.4.tar.gz.

File metadata

  • Download URL: ossapi-3.4.4.tar.gz
  • Upload date:
  • Size: 96.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.0

File hashes

Hashes for ossapi-3.4.4.tar.gz
Algorithm Hash digest
SHA256 7b54997154b2e8483e7ee265b10e556a9265809956c491b744d6a6b3503fc89e
MD5 52112853fe3a319f7ffef24f2bf4c92e
BLAKE2b-256 3100ec4f8cf975dbce07d95dd1ceec2d40b2833740044daab103b2d163798b70

See more details on using hashes here.

File details

Details for the file ossapi-3.4.4-py3-none-any.whl.

File metadata

  • Download URL: ossapi-3.4.4-py3-none-any.whl
  • Upload date:
  • Size: 92.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.0

File hashes

Hashes for ossapi-3.4.4-py3-none-any.whl
Algorithm Hash digest
SHA256 1f7dede97264dcba71f2763faf9e7a8a6263f2293d53a9b568aecb6e26726f71
MD5 bc9dcfc3d5a42043c0bb6491007e2eae
BLAKE2b-256 b1e7f5dec08719d75307860cdab45facc150e8b0cd55e5be82841365dba0fdc7

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page