3

私は 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()  
4

1 に答える 1

1

正規表現を使用して、gcode ファイルで一致する行を見つけることができます。次の関数は、gcode ファイル全体を読み込み、検索を行います。見つかった場合、値は float として返されます。

import re

def get_filament_value(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(filename))
            value = 0.0
        return value

print(get_filament_value('test.gcode'))

あなたのファイルのどれが表示されるべきですか:

55.1

したがって、元のコードは次のようになります。

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)

    # Load the gcode file in and extract the filament value
    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))
                print('filament value is {}'.format(value))
            else:
                value = 0.0
                print('filament not found in {}'.format(fileName))
        return value

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

これにより、結果が float として というクラス変数に保存されvalueます。

于 2016-01-06T17:42:07.870 に答える