请大神帮忙:用python如何从外部文件提取特定的字符串,并作为一个字段存入mysql中
发布网友
发布时间:2022-04-06 04:01
我来回答
共2个回答
热心网友
时间:2022-04-06 05:30
看你给出的这个,我猜想是xml的格式,那么你可以用python的ElementTree模块来解析Xml,再用MySQLdb模块连接数据库插入就ok了,如果你给出的不是xml,那么你可以自己用正则提取,再写入数据库追问大神,环境什么的都搭建好了,代码是硬伤,能不能详细点,,,谢谢,
热心网友
时间:2022-04-06 06:48
抓页面标题么?
import urllib,urllib2
import BeautifulSoup
data=urllib2.urlopen('xxxxxxx').read()
soup = BeautifulSoup(data)
items = soup.findAll('title')
for tmp in items:
print tmp
#######################
存数据库,创建一个mysql对象就插入数据库就行了,具体太多代码,我搜一个给你参考吧
# -*- coding: utf-8 -*-
#mysqldb
import time, MySQLdb
#连接
conn=MySQLdb.connect(host="localhost",user="root",passwd="",db="test",charset="utf8")
cursor = conn.cursor()
#写入
sql = "insert into user(name,created) values(%s,%s)"
param = ("aaa",int(time.time()))
n = cursor.execute(sql,param)
print n
#更新
sql = "update user set name=%s where id=3"
param = ("bbb")
n = cursor.execute(sql,param)
print n
#查询
n = cursor.execute("select * from user")
for row in cursor.fetchall():
for r in row:
print r
#删除
sql = "delete from user where name=%s"
param =("aaa")
n = cursor.execute(sql,param)
print n
cursor.close()
#关闭
conn.close()追问谢谢了,先。哈哈。。。要从json文件中提取,格式为标题内容;,,,,(重复),能提取这个么?
追答上述代码中的 data=你需要的json数据段。搜一下python json 的用法