Python爬取京东:价格、商品ID、标题、评价、店名、是否自营

文章正文
发布时间:2024-05-26 07:18

目录 构建mysql数据表 第一版: 第二版 : 第三版: 总结: 构建mysql数据表 问题:使用SQL alchemy时,非主键不能设置为自增长,但是我想让这个非主键仅仅是为了作为索引,autoincrement=True无效,该怎么实现让它自增长呢? from sqlalchemy import String,Integer,Text,Column from sqlalchemy import create_engine from sqlalchemy.orm import sess