sportsipy
sportsipy copied to clipboard
A free sports API written for python
I'm in the process of adding an option to NFL Boxscore to get all the scoring possession details from the game, as shown on the Sports Reference website, and would...
**Describe the bug** When I try to retrieve goals_against, I receive "None" as a response. **To Reproduce** from sportsipy.nhl.teams import Team nashville = Team('NSH') print(nashville.goals_for) print(nashville.goals_against) **Expected behavior** I expect...
Fix failing NHL unit test The file test_nhl_roster.py failed one of the tests. The error seems to be that the test expects the method player._retrieve_html_page() to return None, but instead,...
**Describe the bug** I went ahead and ran the unit tests to verify that they were functioning properly and found that the file test_nhl_roster.py failed one of the tests it...
**Is your feature request related to a problem? Please describe.** When testing the software, I realized that some of the provided examples from the README.rst file showcased features that are...
**Is your feature request related to a problem? Please describe.** Users should be able to pull the Coaches Poll rankings from the ncaaf.rankings module for each college football season, along...
**Is your feature request related to a problem? Please describe.** When testing the software and using the examples given, I thought that there could be more examples to provide users...
Added an example to the README.rst file that shows user how to retrieve and display basic statistics for an NBA player.
Some README.rst code examples were either no longer functional or produced no output. I swapped those examples out with functional features or modified them to produce output and added expected...