Are you a greedy piece of shit, and you dont want to pay 12$ annually for typeracer.... just like me? But you still wanna see your account statistics?
Lucky for you, I have a solution to our problem. I have written a small script for deep parsing and analysis stats data from typeracer, and I d like to share it with you. All you need is installed python3 on your computer.
Script can also plot some general information for you, if you wanna something unusual, you free to use csv file that will be created.
git clone https://github.com/kinfi4/typeracer-GetAllUserStatsForFree.git
cd TyperacerStatsAnalyst/TyperacerStatsAnalyst
pip install -r requirements.txt (you may also create isolated virtual env for that)
python get_stats.py -u <your username>
* -u (--username) - Username of the account to parse info about
* -f (--filename) - Filepath where to store the parsed info
OR file where script can gather info from, if --no-parsing specified
* -n (--no-parsing) - If it is set script wont parse user stats from typeracer,
it will use info from file instead. Thats why, if -n was set, you must
specify -f (--filename) argument, so script knows where to get info from.
You may also dont specify -u (--username) argument if --no-parsing set.
* --hide-plots - Dont show any plots after parsing finished, cant be used together
with --no-parsing.
@kinfi4