我的气象站需要一些帮助。我想将所有结果保存到mysql数据库中,但目前我已经将所有结果保存到txt文件中。
你能帮我写一个python脚本,从txt文件中读取并保存到mysql中吗?
我的txt文件(temperature.txt)包含数据和温度。它看起来像:
2013-09-29 13:24 22.60
我正在使用python脚本从big“result.txt”文件获取温度和当前时间:
#!/usr/bin/python
import time
buffer = bytes()
fh = open("/home/style/pomiar/result.txt")
for line in fh:
pass
last = line
items = last.strip().split()
fh.close();
print time.strftime("%Y-%m-%d %H:%M"), items[1]
但是我想把它“打印”到mysql表中。我知道如何连接,但我不知道如何将数据保存到表中。
我知道我需要使用: #!的/ usr / bin中/ Python的
import MySQLdb
# Open database connection
db = MySQLdb.connect("localhost","user","password","weather" )
我的数据库“天气”有表“温度”。不知道我是否做了好桌子(第一次 - 数据时间,第二次varchar(5))。现在我需要python脚本来读取这个文件并保存到mysql中。
非常感谢您的支持。
答案 0 :(得分:0)
下一步很简单:
from contextlib import closing
with closing(self.db.cursor()) as cur:
cur.execute("INSERT INTO table1(`measured_at`,`temp`) VALUES(%s, %s)", (measured_at, temp))
self.db.commit()
P.S。看起来你问这个问题是因为你没有做作业,也没有通过任何python教程阅读如何使用MySQL。