Skip to content

Instantly share code, notes, and snippets.

View linikerunk's full-sized avatar
🏠
Working from home

Liniker Oliveira linikerunk

🏠
Working from home
View GitHub Profile
@linikerunk
linikerunk / data_exploration.py
Last active September 11, 2019 17:22 — forked from luisfbueno/data_exploration.py
Web Scraping
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)