簡體   English   中英

使用抓取的數據填充 csv 文件

[英]Populate a csv file with scraped data

我在這方面遇到了麻煩,我知道這是基本的,因為我在周五問了一個類似的問題而被阻止了 2 天,但我真的很掙扎,所以希望能得到幫助。 如何編輯下面的代碼以填充我使用從機場站點提取的表格(即航班到達數據)創建的 csv?

import requests
import csv, sys

from bs4 import BeautifulSoup

cookies = {
    'ApplicationGatewayAffinity': '1d2ad8ab214d1293a4e31bcd161589fa82a54a39bb7b3be80b503996092d4296',
    'ApplicationGatewayAffinityCORS': '1d2ad8ab214d1293a4e31bcd161589fa82a54a39bb7b3be80b503996092d4296',
}

headers = {
    'Connection': 'keep-alive',
    'Cache-Control': 'max-age=0',
    'Upgrade-Insecure-Requests': '1',
    'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36',
    'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
    'Sec-Fetch-Site': 'cross-site',
    'Sec-Fetch-Mode': 'navigate',
    'Sec-Fetch-User': '?1',
    'Sec-Fetch-Dest': 'document',
    'Referer': 'https://www.google.com/',
    'Accept-Language': 'en-GB,en;q=0.9,en-US;q=0.8,fr;q=0.7,nl;q=0.6',
}

response = requests.get('https://www.corkairport.com/arrivals-departures', headers=headers, cookies=cookies)

#print(response.content)
soup = BeautifulSoup(response.content, 'html.parser')

writer = csv.writer(sys.stdout)
writer.writerow([
    'Arriving From'
    'Airline',
    'Scheduled to arrive', 'Latest Update', 'Status'
    ])



with open('flight.csv','w') as f:
           [table] = soup.find_all("table")
           for row in table.find_all("tr"):
               writer.writerow(
               [td.string.strip() for td in row.find_all("td")]
           )
writer = csv.writer(f)

一個小錯誤,您需要在with block中有writer = csv.writer(f)

with open('flight.csv','w') as f:
    [table] = soup.find_all("table")
    writer = csv.writer(f)
    for row in table.find_all("tr"):
        writer.writerow(
        [td.string.strip() for td in row.find_all("td")]
    )

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM