Created
December 25, 2019 01:22
-
-
Save motoom/081311f6d526198de2bfca79136fc058 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
import json | |
d = json.loads(requests.get("https://soccerscanner.net/livescore.json").text) | |
print(d[0]["home_team"] + " vs " + d[0]["away_team"]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment