我需要一些关于气象站的帮助。我想将所有结果保存到 mysql 数据库中,但目前我已经将所有结果保存在 txt 文件中。
你能帮我用python写一个脚本,从txt文件中读取并保存到mysql中吗?
我的 txt 文件 (temperature.txt) 包含数据和温度。看起来像:
2013-09-29 13:24 22.60
我正在使用 python 脚本从大的“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 中。
非常感谢您的支持。