摘要:
问题描述: 使用executemany插入多条记录时: sql = r'INSERT INTO test (id, name, salesrep) VALUES (%s, %s, %s)' vals = [('1', 'John Smith', 'John Doe'), ('2', 'Jane Do 阅读全文
摘要:
将Scrapy项目打包成exe 用到的工具:pyinstaller 步骤: 1、在项目目录下创建脚本start_spider.py文件(注意:名字任意,和scrapy.cfg文件同级) 2、start_spider.py文件内容: # -*- coding: utf-8 -*- from scrap 阅读全文