Use this python3.5 project to scrape all NCAA mens basketball boxscores from an inputted day and save to csv
The program scrapes from sports-reference.com/cbb/
Dependencies:
from urllib.request import urlopen
from bs4 import BeautifulSoup
import re
To use the program, python main.py
You will be asked for three inputs, one after the other
For example, to scrape the games from February 27, 2018:
Please enter the year in this format: xxxx
2018
Please enter the month in this format: x
2
Please enter the day in this format: x
27
I hope you enjoy and find this program useful!