运行包含某些mysql的python代码后,我得到的只是三个或多或少的三个符号(>>>)。任何帮助将非常感激! 我的代码包括尝试通过连接到我的rapiberry pi 3的ds18b20获取温度并将该数据发送到我创建的mysql数据库中。
这是python / mysql代码:
import os
import glob
import time
import MySQLdb
import datetime
i = datetime.datetime.now()
db = MySQLdb.connect(host = "127.0.0.1", user = "root", passwd = "test", db = "temp_pi")
cur = db.cursor()
os.system('modprobe w1-gpio')
os.system('modprobe w1-therm')
base_dir = '/sys/bus/w1/devices/'
device_folder = glob.glob(base_dir + '28*')[0]
device_file = device_folder + '/w1_slave'
def read_temp_raw():
f = open(device_file, 'r')
lines = f.readlines()
f.close()
return lines
def read_temp():
lines = read_temp_raw()
while lines[0].strip()[-3:] != 'YES':
time.sleep(0.2)
lines = read_temp_raw()
equals_pos = lines[1].find('t=')
if equals_pos != -1:
temp_string = lines[1][equals_pos+2:]
temp_c = float(temp_string) / 1000.0
temp_f = temp_c * 9.0 / 5.0 + 32.0
return temp_c
while True:
print ("recording data into database(period = 5s.)....press ctrl+Z to stop!")
valT = str(read_temp())
year = str(i.year)
month = str(i.month)
day = str(i.day)
date = day + "-" + month + "-" + year
hour = str(i.hour)
minute = str(i.minute)
second = str(i.second)
timestr = hour + ":" + minute + ":" + second
try:
cur.execute("""INSERT INTO TAB_CLASSROOM(temp_c,T_Date,T_Time) VALUES(%s,%s,%s)""",(valT,date,time))
db.commit()
except:
db.rollback()
time.sleep(10)
cur.close()
db.close()
答案 0 :(得分:0)
您从未在该代码内运行任何东西。您的大部分代码都位于read_temp()
内部,并且在其中的任何地方都没有调用它。 >>>
表示程序已结束并且已进入解释器模式。在其后添加一些代码,使其按您希望的方式工作。
答案 1 :(得分:0)
您实际上并没有运行任何程序。假设您是
python myscript.py
python将加载文件并运行它-这意味着逐行执行代码。您会发现函数外的前几行很容易执行。然后定义一些函数,但不要调用它们。
您可能应该添加
read_temp()
在脚本末尾。