Skip to content

Instantly share code, notes, and snippets.

@Kiwibp
Last active June 7, 2018 21:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kiwibp/5f23e56d74f1fdb2001ae546debbf161 to your computer and use it in GitHub Desktop.
Save Kiwibp/5f23e56d74f1fdb2001ae546debbf161 to your computer and use it in GitHub Desktop.
NYCDSA DataViz Project -- BeautifulSoup Code Snippet
guards_advanced = urllib.request.urlopen("https://rotogrinders.com/pages/nba-advanced-player-stats-guards-181885").read()
guards_advancedguards_ = bs.BeautifulSoup(guards_advanced, 'lxml')
#leaving out a number of lines necessary to extract data, see github repo for full code if you'd like.
guards_advanced_col_names = col_names.split()
print(guards_advanced_col_names)
#could also use pandas read_html method as well
guards_advanced_dfs = pd.read_html("https://rotogrinders.com/pages/nba-advanced-player-stats-guards-181885")
guards_advanced_stats_df = guards_advanced_dfs[2]
guards_advanced_stats_df.tail()
guards_advanced_col_names = pd.Series(guards_advanced_col_names)
print(guards_advanced_col_names)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment