%matplotlib inline import requests import matplotlib.pyplot as plt import pandas as pd import seaborn as sns Getting the data¶Getting the data from stats.nba.com is pretty straightforward. While there isn't a a public API provided by the NBA, we can actually access the API that the NBA uses for stats.nba.com using the requests library. This blog post by Greg Reda does a great job on explaining how