From 9b0a2b0e7bb1f62e1ac3c02748dccc1c551ce066 Mon Sep 17 00:00:00 2001 From: Tyler Hinrichs Date: Wed, 21 Feb 2024 10:39:03 -0500 Subject: [PATCH] update README.md --- README.md | 16 +++++++++++++++- dynamic_soccer_data.ipynb | 4 +++- 2 files changed, 18 insertions(+), 2 deletions(-) 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" ] }, {