basketball_reference
basketball_reference copied to clipboard
Basketball Reference Scraper
Hi Francisco, When I launch the following command: `python match_generator.py --league nba --seasons 2011-2012` I get the following error: ``` Traceback (most recent call last): File "match_generator.py", line 31, in...
When trying to run with the current season: ``` Traceback (most recent call last): File "match_generator.py", line 31, in main(args.league, args.seasons) File "match_generator.py", line 22, in main b_ref.crawl_season() File "/Users/dl/nba/basketball_reference/base.py",...
After cloning, installing all the modules from requirements and trying out the first example: ``` (venv) dl-MacBook-Pro:basketball_reference dl$ python match_generator.py --league nba --seasons 2003-2004 Traceback (most recent call last): File...
In the website there are two types of new strings created
Two strings are not covered on line 49: 'Not With Team', 'Did Not Dress', that line needs to be modified to: `stat = stat if stat not in [None, 'Did...
``` The code that caused this warning is on line 49 of the file match_generator.py. To get rid of this warning, change code that looks like this: BeautifulSoup([your markup]) to...
My contribution to this very cool package: I had needs to get the [Twitter accounts off of basketball-reference.com](http://www.basketball-reference.com/friv/twitter.cgi) and this package had a great foundation. The Twitter module simply scraps...