sportsipy
sportsipy copied to clipboard
A free sports API written for python
The CONTRIBUTING.md file had multiple spelling errors that were corrected. Signed-Off-By: Ricky Lavergne
I found a typo in the NHL docs. Under the Roster section, it used 'DET' as an example team. But in the comment below the example, it stated that it...
Fix the baseball code example It currently results in an empty dataframe, which is useless. The string passed as argument to the Boxscore class is incorrect, and requires the `BOS/`...
Added a more complex MLB example to the README This example could also be incorporated to the project's documentation, similar to the "Finding Tallest Players" example. I think it would...
**Describe the bug** Upon instantiating a roster for a given team, the _players_ field will always be an empty list (or dict). **To Reproduce** Sample code: ```python import sportsipy.nfl.roster as...
**Is your feature request related to a problem? Please describe.** I'm attempting to pull the schedule of today's games that are YET to be played. The boxscores module only includes...
**Describe the bug** The NBA rosters are not being pulled correctly **To Reproduce** Sample code which causes an issue. ```python from sportsipy.nba.teams import Teams ] def findThreePointShooters(event=None,context=None): teams = Teams()...
Attempting to close #591 by tweaking the boxscore scheme according to suggestions that others have made in that issue. Appears to be working from what I can tell, but happy...
**Describe the bug** boxscore is not consistently pulling game info (IndexError: list index out of range). **To Reproduce** Sample code which causes an issue. ```python from sportsipy.ncaab.boxscore import Boxscore game_data1...
Related Issues: closes #711 closes #678 closes #674 closes #652 closes #597 closes #591 Related PR's: #598 Summary: Fix the ncaa boxscore parsing error, using the xml level above `table_wrapper`....