错误 ------ 解析时意外的 EOF

Error ------ unexpected EOF while parsing

我 运行 在我的 raspberry pi 3 上使用最新的 raspbian 软件在 Python 3(IDLE) 上使用此代码。使用此代码,我试图通过 ds18b20 传感器获取温度数据,并将相同的数据发送到我创建的 mysql 数据库。

从 try: 到 if connection.is_connected() 结束,我正在建立与 mysql 数据库的连接。

从 if os.system('modprobe w1-gpio') 到 return temp_c,我通过 ds18b20 传感器获取温度数据。

从 Whiletrue 到我的代码结束,我尝试将温度数据发送到特定的 table 标题为 TAB_CLASSROOM。

非常感谢您的帮助!

这里是完整的错误!:

Traceback (most recent call last):
  File "/home/pi/Desktop/mysqlfinal1test.py", line 74
    db.close()
              ^
SyntaxError: unexpected EOF while parsing

这是 python 包括 mysql 代码:

import os
import glob
import time
import MySQLdb
import datetime
import mysql.connector
from mysql.connector import Error

i = datetime.datetime.now()

try:
    connection = mysql.connector.connect(host='127.0.0.1',
                             database='temp_pi',
                             user='root',
                             password='test')

    if connection.is_connected():
       db_Info = connection.get_server_info()
       print("Connected to MySQL database... MySQL Server version on ",db_Info)
       cursor = connection.cursor()
       cursor.execute("select database();")
       record = cursor.fetchone()
       print ("Your connected to - ", record)

    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()

大多数发布的程序都是一个巨大的 try 块,没有 except 子句。因此,当解析器到达文件底部时,它无法完成打开的控制块。

try在第11行;我们 运行 在第 74 行之后没有输入,try.

没有任何 except

我怀疑您的缩进有误(除其他外),因为这个 try 包含两个函数定义。不过,您有两个 try 语句,只有一个 except.