Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created August 20, 2021 08:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amankharwal/cad4d520e0e1badedf90313c002f43f5 to your computer and use it in GitHub Desktop.
Save amankharwal/cad4d520e0e1badedf90313c002f43f5 to your computer and use it in GitHub Desktop.
import csv
from urllib.request import urlopen
from bs4 import BeautifulSoup
html = urlopen("https://bit.ly/3jpMFRW")
soup = BeautifulSoup(html, "html.parser")
table = soup.findAll("table", {"class":"wikitable"})[0]
rows = table.findAll("tr")
with open("Dataset.csv", "wt+", newline="") as f:
writer = csv.writer(f)
for i in rows:
row = []
for cell in i.findAll(["td", "th"]):
row.append(cell.get_text())
writer.writerow(row)
import pandas as pd
data = pd.read_csv("Dataset.csv")
data.head()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment