我目前有两个不同的python脚本。
第一个将实木复合地板文件转换为xlsx,第二个实际上只是在尝试构建GUI以便能够运行第一个脚本。**这是第一个脚本:
import pandas as pd
import os
import pyarrow
import shutil
from pathlib import Path
file = input("What file would you like to convert from parquet to csv? ")
df1 = pd.read_parquet(file)
df = df1.append(df1, ignore_index=True)
dirout = input("Where would you like the xlsx file to be output to?")
name = input("What would you like to call the ouput file?" )
cfile = os.path.join(dirout, name + "." + "xlsx")
df.to_excel(cfile)
在第二个脚本中,我希望用户输入txt来输入文件,名称和dirout。有可能吗?
import os
from tkinter import *
window = Tk()
window.title("Convertor")
#Sets the size of the window
window.geometry('550x400')
#Adds a header to the window and configures the size
lbl = Label(window, text="Convert Parquet to CSV", font=("Arial Bold", 18))
#Configures where the label message will appear
lbl.grid(column=0, row=0)
#adds an input text message
txt = Entry(window,width = 30)
txt.grid(column=3, row=3)
txt = Entry(window,width = 30)
txt.grid(column=4, row=4)
def clicked():
os.system('python ParquetToCsv.py')
#Adding a button
btn = Button(window, text="Convert", command=clicked)
btn.grid(column=6, row = 6)
#The mainloop causes the window to remain open until someone interacts with it
window.mainloop()
答案 0 :(得分:1)
将您的第一个脚本转换为带有要传递的变量的参数的函数:
def myfunc(f, n, dir):
file = f
df1 = pd.read_parquet(file)
df = df1.append(df1, ignore_index=True)
dirout = dir
name = n
cfile = os.path.join(dirout, name + "." + "xlsx")
df.to_excel(cfile)
然后将函数导入另一个脚本,并通过参数调用它:
import os
from tkinter import *
from myutils import myfunc
window = Tk()
window.title("Convertor")
#Sets the size of the window
window.geometry('550x400')
#Adds a header to the window and configures the size
lbl = Label(window, text="Convert Parquet to CSV", font=("Arial Bold", 18))
#Configures where the label message will appear
lbl.grid(column=0, row=0)
#adds an input text message
txt_name = Entry(window,width = 30)
txt.grid(column=3, row=3)
txt_file = Entry(window,width = 30)
txt.grid(column=4, row=4)
txt_dir = Entry(window,width = 30)
txt.grid(column=4, row=4)
def clicked():
os.system('python ParquetToCsv.py')
#Adding a button
btn = Button(window, text="Convert", command=clicked)
btn.grid(column=6, row = 6)
#The mainloop causes the window to remain open until someone interacts with it
window.mainloop()
# Call function passing the arguments
myfunc(txt_file, txt_name, txt_dir)