To create an API call to gather NBA player stats in Ruby, we can use the httparty
gem which makes HTTP requests and handles responses easily.
Here’s an example code block that shows how to use httparty
to gather player stats from the NBA API.
main.rb857 chars23 lines
In this example, we first fire a GET request to the NBA API to get all current players in the league. We then filter the necessary data and loop through each player to get their individual stats. Finally, we print out the player name and stats for each player.
gistlibby LogSnag