ICC-Rankings
Python / Selenium
A Simple Python Code with Selenium, Web Scraping ICC team Rankings.
Installation
Use the package manager pip to install Selenium and Tabulate (optional).
pip3 install selenium
pip3 install tabulate
You need Webdriver installed : Download Here
# Make sure to Have Webdriver extracted at a specific path and add the path
PATH = "PATH_OF_THE_DRIVER_FILE"
driver = webdriver.Chrome(PATH)
Usage
from selenium import webdriver
from selenium.webdriver import ActionChains
from tabulate import tabulate
import time