Due Wednesday
The assignment is on repl.it (HW13) but you want to write this in Atom and run it on your laptop first. Then just paste your solution program into repl.it to submit.
You'll start with this program and fill it in:
import json
import requests
# Retrieves the player roster for the Baltimore Orioles (team_id=121)
r = requests.get(url="http://lookup-service-prod.mlb.com/json/named.roster_team_alltime.bam?start_season=2018&end_season=2019&team_id=121")
data = r.json()
# YOUR CODE HERE -- Print out all player names on the Orioles.