import requests
import csv
import requests
from bs4 import BeautifulSoup
r = requests.get('https://pqt.cbp.gov/report/YYZ_1/12-01-2017')
soup = BeautifulSoup(r)
table = soup.find('table', attrs={ "class" : "table-horizontal-line"})
headers = [header.text for header in table.find_all('th')]
rows = []
for row in table.find_all('tr'):
rows.append([val.text.encode('utf8') for val in row.find_all('td')])
with open('output_file.csv', 'wb') as f:
writer = csv.writer(f)
writer.writerow(headers)
writer.writerows(row for row in rows if row)
I am trying to parse all table data in this particular webpage: https://pqt.cbp.gov/report/YYZ_1/12-01-2017
I am getting an error in the line soup = BeautifulSoup(r). I get an error TypeError: object of type 'Response' has no len(). I am also not sure if my logic is correct. Plz help me pasing the table data.