網(wǎng)易楊亮講單詞方法與實(shí)戰(zhàn)
2022-09-28 13:40 作者:娜娜絡(luò)絡(luò) | 我要投稿
pipeline部分代碼:
import json class AbcspiderPipeline(object): ? ? def __init__(self): ? ? ? ? self.items = [] ? ? def process_item(self, item, spider): ? ? ? ? self.items.append(dict(item)) ? ? ? ? print("="*40) ? ? ? ? return item ? ? def close_spider(self,spider): ? ? ? ? with open('qsbk.json','w',encoding='utf-8') as fp: ? ? ? ? ? ? json.dump(self.items,fp,ensure_ascii=False)
標(biāo)簽: