私は Python にまったく慣れていないので、ファイル内の特定の値を見つけて、それを使用していくつかの計算を実行する簡単なスクリプトを作成したいと考えていました。
だから私は .gcode ファイルを持っています (これは 3D プリンター用の何千行ものファイルですが、単純なテキスト エディターで開くことができます)。起動すると簡単な GUI が開き、.gcode ファイルの選択を求めるボタンが表示される簡単な Python プログラムを作成したかったのです。次に、ファイルを開いた後、プログラムに特定の行を見つけてもらいたい
; 使用フィラメント = 22900.5mm (55.1cm3)
(上記はファイルからの行の正確な形式です) 値 55.1 を抽出します。後で、この値を使って簡単な計算をしたいと思います。これまでのところ、単純な GUI とファイルを開くオプションを備えたボタンを作成しましたが、このファイルからこの値を数値として取得する方法に行き詰まっています (後で方程式で使用できるようにするため)。
誰かが私を助けてくれるように、私の問題を十分に明確に説明したことを願っています:) 事前に助けてくれてありがとう!
これまでの私のコード:
from tkinter import *
import re
# Here, we are creating our class, Window, and inheriting from the Frame
# class. Frame is a class from the tkinter module. (see Lib/tkinter/__init__)
class Window(Frame):
# Define settings upon initialization. Here you can specify
def __init__(self, master=None):
# parameters that you want to send through the Frame class.
Frame.__init__(self, master)
#reference to the master widget, which is the tk window
self.master = master
#with that, we want to then run init_window, which doesn't yet exist
self.init_window()
#Creation of init_window
def init_window(self):
# changing the title of our master widget
self.master.title("Used Filament Data")
# allowing the widget to take the full space of the root window
self.pack(fill=BOTH, expand=1)
# creating a menu instance
menu = Menu(self.master)
self.master.config(menu=menu)
# create the file object)
file = Menu(menu)
# adds a command to the menu option, calling it exit, and the
# command it runs on event is client_exit
file.add_command(label="Exit", command=self.client_exit)
#added "file" to our menu
menu.add_cascade(label="File", menu=file)
#Creating the button
quitButton = Button(self, text="Load GCODE",command=self.read_gcode)
quitButton.place(x=0, y=0)
def get_filament_value(self, filename):
with open(filename, 'r') as f_gcode:
data = f_gcode.read()
re_value = re.search('filament used = .*? \(([0-9.]+)', data)
if re_value:
value = float(re_value.group(1))
else:
print 'filament not found in {}'.format(root.fileName)
value = 0.0
return value
print get_filament_value('test.gcode')
def read_gcode(self):
root.fileName = filedialog.askopenfilename( filetypes = ( ("GCODE files", "*.gcode"),("All files", "*.*") ) )
self.value = self.get_filament_value(root.fileName)
def client_exit(self):
exit()
# root window created. Here, that would be the only window, but
# you can later have windows within windows.
root = Tk()
root.geometry("400x300")
#creation of an instance
app = Window(root)
#mainloop
root.mainloop()