0

我有一个朋友制作的 python 代码,因为我对 python 的了解非常少。我想将它转换为 GUI,因为我们会将代码作为程序分发,以使其对初学者友好。

无论如何,这是代码:

import time, os, sys 
try: 
if len(sys.argv) < 2: 
    fn = raw_input("Enter the name of the file you want to edit: ") 
else: fn = sys.argv[1] 
f = open(fn) 
b = f.read() 
for i in b[:300]: 
    print hex(ord(i))[2:], 
f.close() 
line = str(0x15c)+'-'+str(0x15f) 
if len(sys.argv)<3: 
    hexcode = raw_input("3 bytes color hex number: ") 
else: hexcode = sys.argv[2] 
if not hexcode.startswith('0x'): 
    hexcode = '0x'+hexcode 
hexstr = '0x'
start = int(line.split('-')[0]) 
end = int(line.split('-')[1]) 
for i in b[start:end]: 
    hexstr+=hex(ord(i))[2:] 
ascii = '' 
for i in range(2,len(hexcode),2): 
    char = chr(int(hexcode[i:i+2],16)) 
    ascii+=char 
b = b[:start]+ascii+b[end:] 
for i in b[:300]: 
    print hex(ord(i))[2:], 
except Exception, x: 
print x 
time.sleep(3) 
finally: 
f = open(fn,'wb') 
f.write(b) 
f.close() 

现在我在教程中找到了这个但不知道如何使用它:#simple GU0I

from Tkinter import *

root = Tk()
root.title("BreffHexReplace")
root.geometry("400x200")

app = Frame(root)
app.grid()
label = Label(app, text = "This is a label!")

label.grid()

root.mainloop()

有什么帮助吗?谢谢!

还有一件事,在这段代码中,在我输入名称或替换十六进制后,它会显示一个十六进制列表,我怎样才能让它不显示?

谢谢!

4

1 回答 1

0

因为这个程序很简单,你可以试试 EasyGui(easygui.sourceforge.net/)。首先,添加import easygui as eg. 此行加载 EasyGui 模块。接下来,替换fn = raw_input("Enter the name of the file you want to edit: ")fn = eg.fileopenbox(title = 'HexReplace', msg = 'Browse to the file you wish to edit')。这将打开一个框以浏览到想要的文件。也替换hexcode = raw_input("3 bytes color hex number: ")hexcode = eg.enterbox(msg = '3 bytes color hex number', title = 'HexReplace'). 这会弹出一个输入框。替换print xeg.msgbox(title = 'HexReplace', msg = x)。这将显示一个带有异常的消息框。title参数是窗口标题。要删除十六进制列表,请在导入和try块之间添加:null = open(os.devnull, 'W's); oldstdout = system.stdout; sys.stdout = null 这将使所有打印消息静音。

于 2013-04-06T20:22:33.920 回答