1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00
royalnet/league.py

60 lines
2.4 KiB
Python

import asyncio
import requests
class NotFoundException(Exception):
pass
class NoRankedGamesCompletedException(Exception):
pass
class RateLimitException(Exception):
pass
loop = asyncio.get_event_loop()
# Load League of Legends API key from the leaguetoken.txt file
file = open("leaguetoken.txt", "r")
token = file.read()
file.close()
ranklist = ['BRONZE', 'SILVER', 'GOLD', 'PLATINUM', 'DIAMOND', 'MASTER', 'CHALLENGER']
roman = ['I', 'II', 'III', 'IV', 'V']
# Get player rank info
async def get_player_rank(region: str, summonerid: int, **kwargs):
print("[League] Getting league info for: {region} {summonerid}".format(region=region, summonerid=summonerid))
# GET the json API response
r = await loop.run_in_executor(None, requests.get,
'https://{region}.api.pvp.net/api/lol/{region}/v2.5/league/by-summoner/{summonerid}'
'/entry?api_key={token}'.format(region=region, summonerid=summonerid, token=token))
# Ensure the request is successful
if r.status_code == 200:
return r.json()[str(summonerid)][0]
elif r.status_code == 404:
raise NoRankedGamesCompletedException("This player hasn't completed any ranked games.")
elif r.status_code == 429:
raise RateLimitException("You've been ratelimited by Riot. Check your developer dashboard.")
else:
raise Exception("Unhandled API response.")
# Get player info data
async def get_player_info(region: str, summonerid: int, **kwargs):
print("[League] Getting profile info for: {region} {summonerid}".format(region=region, summonerid=summonerid))
# GET the json API response
r = await loop.run_in_executor(None, requests.get, 'https://{region}.api.pvp.net//api/lol/{region}/v1.4/summoner/'
'{summonerid}/entry?api_key={token}'
.format(region=region, summonerid=summonerid, token=token))
# Ensure the request is successful
if r.status_code == 200:
return r.json()[str(summonerid)]
elif r.status_code == 404:
raise NoRankedGamesCompletedException("This player hasn't completed any ranked games.")
elif r.status_code == 429:
raise RateLimitException("You've been ratelimited by Riot. Check your developer dashboard.")
else:
raise Exception("Unhandled API response.")