python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
modifying an element in a 2D array for discord.py
I'm making a discord bot so that I can make tournaments for League 5v5.
Here is the command I made for making the teams:
rows, cols = 5, 2
teamArr = [["Empty" for x in range(rows)] for y in ...
g1cs
Votes: 0
Answers: 1
How do you extract a large dataset of League of Legends game history?
For a personal research project, I will need a large dataset of League of Legends game histories of a large number of players (at least the results of 20 games for about 1000 players).
I first looked ...

Poco
Votes: 0
Answers: 1
How do I know when RiotWatcher encounters a 429 error?
I use RiotWatcher to access the riot API with python. Since I do a lot of queries with a development key, I try to watch out for 429 errors indicating an overrun of the allowed query rate.
In doing so...

Poco
Votes: 0
Answers: 2
KeyError with Riot API Matchv5 When Trying To Pull Data
I'm trying to pull a list of team and player stats from match IDs. Everything looks fine to me but when I run my "for loops" to call the functions for pulling the stats I want, it just print...
DharTyr
Votes: 0
Answers: 1