这是我第一次使用pycharm和flask库。我是高级编程的新手,我试图为我的程序创建一个可执行链接,但我收到语法错误。当我在空闲状态下运行相同的脚本而没有flask功能并且在python IDLE中没有if __name__=="__main__":
行时,它按预期运行。
from flask import Flask
import os
import csv
import sqlite3
import tkinter.filedialog
import pandas as pd
from tkinter import filedialog
from tkinter import *
app=Flask(__name__)
@app.route('/')
k=Tk()
k.filename = filedialog.askopenfilename(initialdir = "/",title = "Select file",filetypes = (("csv files","*.csv"),("all files","*.*")))
database=sqlite3.connect("C:\SQLiteStudio\data.db")
d=database.cursor()
task1="""CREATE TABLE z (
date DATE ,
time TIME ,
value_1 DOUBLE PRECISION ,
value_2 DOUBLE PRECISION ,
final_value DOUBLE
);"""
task2="""INSERT INTO z (date, time, value_1, value_2, final_value) VALUES (?,?,?,?,?)"""
#d.execute(task1)
out=pd.read_csv(k.filename, header=None)
print(len(out))
print(out.iloc[0])
row=1
if str(out.iloc[0,0])=='Date' and str(out.iloc[0,1])=='Time' and str(out.iloc[0,2])=='Lat' and str(out.iloc[0,3])=='Long' and str(out.iloc[0,4])=='Temp':
while row< len(out):
print(row)
d.execute(task2,out.iloc[row])
database.commit()
row+=1
else:
print("The data is not in expected format.")
database.close()
if __name__=="__main__":
app.run()
"C:\Users\Jay Paliwal\Desktop\Internship\venv\Scripts\python.exe"
"C:/Users/Jay Paliwal/Desktop/Internship/task 1.py"
File "C:/Users/Jay Paliwal/Desktop/Internship/task 1.py", line 13
k=Tk()
^
SyntaxError: invalid syntax
Process finished with exit code 1
这是我得到的输出。我期待一个链接,当有人访问时会打开一个对话框,用于使用的tkinter函数
答案 0 :(得分:0)
您不能仅仅拥有一个装饰器。装饰器需要声明一个函数。
您的代码仍然应该在函数中。
(不过请注意,尝试在Flask应用程序中使用tkinter没有意义。为什么在这里完全使用Flask?)