I am using the requests library to retrieve data from nitrotype.com/racer/insert_name_here
about a user's progress using the following code:
import requests
base_url = 'https://www.nitrotype.com/racer/'
name = 'test'
url = base_url + name
page = requests.get(url)
print(page.text)
However my problem is that this retrieves data from the loading screen, I want the data after the loading screen. Is it possible to do this and how?