Skip to main content

An asynchronous wrapper for ow-api.com using aiohttp

Project description

pyowapi

pyowapi is an asynchronous wrapper around an official Overwatch api (https://ow-api.com) using aiohttp.

Example usage

import pyowapi

# Both of these create an event loop for you for convenience. This will not work where an event loop already exists (like discord.py)

# For a single player
player = pyowapi.get_player("Jayne#1447")
print(player.success)
print(player.actual_level)
print(player.private)
print(player.competitive_tank)

# For multiple players
player_list = ["Jayne#1447", "Krusher#9999"]
players = pyowapi.get_bulk_players(player_list)
for single_player in players:
    print(player.actual_level)


# If an event loop already exists you need to await the methods with an _ at the start


player = await pyowapi._get_player("Jayne#1447")
print(player.actual_level)
print(player.private)
print(player.competitive_tank)

player_list = ["Jayne#1447", "Krusher#9999"]
players = await pyowapi._get_bulk_players(player_list)
for single_player in players:
    print(player.actual_level)

A player has the following properties
print(player.bnet)  # The battletag of the Player
print(player.success)  # If the request was successful
print(player.level)  # The number in Overwatch without stars calculated in
print(player.prestige)  # The number of stars in Overwatch
print(player.actual_level)  # The full level with stars calculated in
print(player.private)  # If the players profile is private
print(player.endorsement)  # The player endorsement level
print(player.quickplay_stats)  # Dictionary containing all quickplay stats
print(player.quickplay_cards)
print(player.quickplay_medals)
print(player.quickplay_medals_bronze)
print(player.quickplay_medals_silver)
print(player.quickplay_medals_gold)
print(player.quickplay_games_won)
print(player.competitive_stats)  # Dictionary containing all competitive stats
print(player.competitive_cards)
print(player.competitive_medals)
print(player.competitive_medals_bronze)
print(player.competitive_medals_silver)
print(player.competitive_medals_gold)
print(player.competitive_games_played)
print(player.competitive_games_won)
print(player.competitive_tank)  # Player Tank SR. False if unplaced
print(player.competitive_damage)  # Player Damage SR. False if unplaced
print(player.competitive_support)  # Player Support SR. False if unplaced

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

pyowapi-1.1.0.tar.gz (3.4 kB view hashes)

Uploaded Source

Built Distribution

pyowapi-1.1.0-py3-none-any.whl (4.5 kB view hashes)

Uploaded Python 3

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