diff --git a/README.md b/README.md index 892d72e..280a506 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,16 @@ # tyler-hinrichs-ucsas-2024 -Materials for UCSAS 2024 +Important information about each notebook: + +**static_soccer_data.ipynb**: +- We use 3 Python libraries, Requests, BeautifulSoup4, and Pandas, which can be installed with commands in the notebook + +**dynamic_soccer_data.ipynb**: +- We use 3 Python libraries, Selenium, BeautifulSoup4, and Pandas, which can be installed with commands in the notebook +- We must use a ChromeDriver for full functionality +- The version must match your downloaded Chrome instance + - Chrome version <=114>: https://chromedriver.chromium.org/downloads + - Chrome version >114: https://googlechromelabs.github.io/chrome-for-testing/ + +### Slides: +- Have been created using rmarkdown +- Access through the .rmd file (need R to run) or through the html file diff --git a/dynamic_soccer_data.ipynb b/dynamic_soccer_data.ipynb index a2dcc4b..e35396d 100644 --- a/dynamic_soccer_data.ipynb +++ b/dynamic_soccer_data.ipynb @@ -30,7 +30,9 @@ "metadata": {}, "outputs": [], "source": [ - "%pip install selenium" + "%pip install selenium\n", + "%pip install beautifulsoup4\n", + "%pip install pandas" ] }, {