摘要:
1. 函数递归 xya_file = Path('./test') def get_file_list(path:Path,data = []): for i in path.glob('*.*'): if i.is_dir(): data.extend(file_list(path=i,data= 阅读全文
摘要:
class FctpItem(scrapy.Item): # define the fields for your item here like: image_urls = scrapy.Field() images = scrapy.Field() from scrapy.pipelines.im 阅读全文