Я совершенно новичок в этом и не могу заставить это правильно экспортировать.
# select document
with open('scrape1.html') as html_file:
soup = BeautifulSoup(html_file, 'lxml')
# create/name csv
with open('speechengine_report.csv', 'w') as csv_file:
writer = csv.writer(csv_file)
writer.writerow(['computer', 'usagedata'])
# tell bs4 to only look at x tags with a class of y
for licensedata in soup.find_all('div', class_='licensedata'):
# scrape pc id
computer = licensedata.p.b.text
print(computer)
# scrape usage stats for each id
for usagedata in licensedata.find_all('td'):
# minutes = usagedata.table.tbody
print(usagedata.text)
# blank line
print()
# writer.writerow([computer, usagedata])
csv_file.close()
Остальной код, в который вы хотите записать данные в файл csv, должен находиться в блоке with. Кроме того, вам не нужен csv_file.close(), поскольку он обрабатывает это за вас. Попробуйте приведенный ниже код. Прочитайте обработка файлов в python
with open('scrape1.html') as html_file:
soup = BeautifulSoup(html_file, 'lxml')
# create/name csv
with open('speechengine_report.csv', 'w') as csv_file:
writer = csv.writer(csv_file)
writer.writerow(['computer', 'usagedata'])
# tell bs4 to only look at x tags with a class of y
for licensedata in soup.find_all('div', class_='licensedata'):
# scrape pc id
computer = licensedata.p.b.text
print(computer)
# scrape usage stats for each id
for usagedata in licensedata.find_all('td'):
# minutes = usagedata.table.tbody
print(usagedata.text)
# blank line
print()
# writer.writerow([computer, usagedata])