Skip to content

Instantly share code, notes, and snippets.

View pjleimbigler's full-sized avatar

Peter Leimbigler pjleimbigler

  • Toronto
View GitHub Profile
import requests
from bs4 import BeautifulSoup
import pandas as pd
import time
baseurl = 'http://publicreporting.ltchomes.net/en-ca/'
url = baseurl + 'Search_Selection.aspx'
response = requests.get(url)
soup = BeautifulSoup(response.text, "html.parser")