概述
嗨,我试图在一列中插入一个python列表,但是它总是在语法上给出错误。
这是新手。谢谢你的帮助。谢谢。在from time import time
import MySQLdb
import urllib
import re
from bs4 import BeautifulSoup
db = MySQLdb.connect("localhost","testuser","test123","testdb" )
cursor = db.cursor()
x=1
while x<2:
url = "http://search.insing.com/ts/food-drink/bars-pubs/bars-pubs?page=" +str(x)
htmlfile = urllib.urlopen(url)
soup = BeautifulSoup(htmlfile)
reshtml = [h3.a for h3 in soup.find("div", "results").find_all("h3")]
reslist = []
for item in reshtml:
res = item.text.encode('ascii', 'ignore')
reslist.append(' '.join(res.split()))
sql = "INSERT INTO insing(name)
VALUES %r"
% res
最后
以上就是粗心花瓣为你收集整理的python获取mysql表中一列数据_将Python列表插入mySQL数据库中的一列的全部内容,希望文章能够帮你解决python获取mysql表中一列数据_将Python列表插入mySQL数据库中的一列所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复