Python requests to get leaderboard info

Hello I wanted to get the json information from “https://terminal.c1games.com/api/game/leaderboard?page=1
into my python script, but I have no clue, but every connection fails with this error:

urllib.error.URLError: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:833)>

the script im using:
import urllib.request, json
with urllib.request.urlopen(“https://terminal.c1games.com/api/game/leaderboard?page=1”) as url:
data = json.loads(url.read().decode())
print(data)
I’ve found no way to solve this issue

nevermind fixed it by not using https rather than http