Tkinter Python输入字符串到没有Entry字段的变量

时间:2014-08-01 07:48:18

标签: python input tkinter barcode

我试图编写一个程序,您可以通过RFID登录,而不是通过条形码购买东西,我已经在控制台中完成了它并且它工作得很好,现在我想尝试在GUI中使它很好,但我只能从键盘读取输入(EAN条形码作为字符串),而无需将鼠标连接到我的计算机,只需将条形码阅读器和RFID阅读器连接起来。

以下是我遇到问题的部分:

                #Now ask the customer to Scan a Produkt
            task.config(text="Please Scan a Product!")

            ean = StringVar()
            Entry(root, textvariable=str(ean)).pack()

            cursor.execute("SELECT * FROM products where ean = '" +ean+"'")

            #Check if EAN is in the Database
            if not cursor.rowcount:
                task.config(text="Sorry but this is not a valid Barcode!")

希望有人可以帮助我,

谢谢!

0 个答案:

没有答案