私は、それぞれ 20 レコードのテーブルで約 400,000 レコードをスクレイピングするプロジェクトに取り組んでいます。現在、私のスクリプトはページの URL の完全なリストを作成し、各 URL に対してページを開き、BeautifulSoup を含むテーブルを見つけ、各行をスクレイピングします。各行をスクレイピングすると、行が CSV に書き込まれます。
def scrape_table(url):
soup = get_soup(url)
table = soup.find('table' , {'id' : 'BigTable'})
for row in table.find_all('tr'):
cells = row.find_all('td')
if len(cells) > 0:
name_bits = cells[0].get_text().strip().split(',')
first_name = name_bits[0].strip()
last_name = name_bits[1].strip()
species = cells[1].get_text().strip()
bunch = re.sub(u'[\xa0\xc2\s]+',' ',str(cells[5]),flags=re.UNICODE).strip()
bunch_strings = list(BeautifulSoup(bunch).td.strings)
weight = bunch_strings[1].strip()
bunch_match = re.match("dob:(.*) Mother: \$(.*)",bunch_strings[2].strip())
dob = date_format(bunch_match.groups()[0].strip())
mother = bunch_match.groups()[1].strip()
row_of_data = {
'first_name': first_name,
'last_name' : last_name,
'species' : species,
'weight' : weight,
'dob' : dob,
'mother' : mother
}
data_order = ['first_name', 'last_name', 'dob', 'mother', 'weight', 'kesavan']
csv_row(row_of_data,data_order,'elephants')
else:
continue
def csv_row(data,fieldorder,filename, base=__base__):
full_path = __base__+filename+'.csv'
print "writing", full_path
with open(full_path, 'a+') as csvfile:
linewriter = csv.DictWriter(csvfile, fieldorder, delimiter='|',
quotechar='"', quoting=csv.QUOTE_MINIMAL)
linewriter.writerow(data)
各行を書き込むのではなく、結果の各ページを一度にCSVに書き込んだ方が効率的かどうか疑問に思っています。それとも、より多くの RAM を使用し、コンピューターの他の部分の速度が低下しますか? これをより効率的にする他の方法はありますか?