This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
import requests | |
from bs4 import BeautifulSoup | |
import matplotlib.pyplot as plt | |
import seaborn as sns | |
# Método para extrair várias páginas de uma só vez | |
def scrape_stats(base_url, year_start, year_end): | |
years = range(year_start,year_end+1,1) |