Skip to content

Instantly share code, notes, and snippets.

@motoom
Created December 25, 2019 01:22
Show Gist options
  • Save motoom/081311f6d526198de2bfca79136fc058 to your computer and use it in GitHub Desktop.
Save motoom/081311f6d526198de2bfca79136fc058 to your computer and use it in GitHub Desktop.
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