Skip to content

Instantly share code, notes, and snippets.

@vlad2792
vlad2792 / python project
Created February 18, 2018 11:13
Create a webscraper
import requests
page = requests.get("http://time.com/4912055/donald-trump-phoenix-arizona-transcript/")
from bs4 import BeautifulSoup
soup = BeautifulSoup(page.content, 'html.parser')
print (soup)