摘要: # -*- coding: utf-8 -*- import csv import scrapy class GjSpider(scrapy.Spider): name = 'gj' allowed_domains = ['ganji.com'] start_urls = ['http://sz.g 阅读全文
posted @ 2020-03-16 17:39 brady-wang 阅读(364) 评论(0) 推荐(0)
摘要: # -*- coding: utf-8 -*- # Define your item pipelines here # # Don't forget to add your pipeline to the ITEM_PIPELINES setting # See: https://doc.scrap 阅读全文
posted @ 2020-03-16 16:43 brady-wang 阅读(1347) 评论(0) 推荐(0)
摘要: Python中xlrd和xlwt模块使用方法 阅读目录 安装 xlrd模块使用 xlwt模块 xlrd模块实现对excel文件内容读取,xlwt模块实现对excel文件的写入。 回到顶部 安装 ? 1 2 pip install xlrd pip install xlwt 回到顶部 xlrd模块使用 阅读全文
posted @ 2020-03-16 16:05 brady-wang 阅读(890) 评论(0) 推荐(0)
摘要: 1 setting里面启动管道 ITEM_PIPELINES = { 'ganji.pipelines.GanjiPipeline': 300,}2 拿到的数据通过yield返回给管道 # -*- coding: utf-8 -*- import csv import scrapy class Gj 阅读全文
posted @ 2020-03-16 15:53 brady-wang 阅读(577) 评论(0) 推荐(0)