-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathPyInstallerGUI.py
More file actions
389 lines (326 loc) · 15.9 KB
/
PyInstallerGUI.py
File metadata and controls
389 lines (326 loc) · 15.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
import tkinter as tk
from tkinter import ttk
from tkinter import messagebox
from tkinter import filedialog
import os
import webbrowser
from PIL import Image, ImageTk
__version__ = '1.0.0.2'
COLOR = '#E0E0DA'
class MainApp:
def __init__(self, parent):
def call_set_version():
SetVetsionFile(parent)
def call_grab_version():
GrabVersionFile(parent)
def documentation_pyinstaller():
link = 'https://pyinstaller.readthedocs.io/en/stable/'
webbrowser.open_new_tab(link)
def download_py_installer():
link = 'https://www.pyinstaller.org/downloads.html'
webbrowser.open_new_tab(link)
def download_upx():
link = 'https://upx.github.io/'
webbrowser.open_new_tab(link)
def command_info(string):
if string == 'onefile':
messagebox.showinfo('Info', 'Create a single file deployment')
elif string == 'name':
messagebox.showinfo('Info', 'Optional name to assign to the project (from which the spec file name is '
'generated). If omitted, the basename of the (first) script is used.')
elif string == 'subsystem':
messagebox.showinfo('Info', 'Use a console subsystem executable (default) or use a windowed subsystem '
'executable, which on Windows does not open the console when the program '
'is launched')
elif string == 'noupx':
messagebox.showinfo('Info', 'Do not use UPX even if available (works differently between Windows and '
'*nix)')
elif string == 'versionfile':
messagebox.showinfo('Info', 'Add a version resource from FILE to the exe')
elif string == 'icon':
messagebox.showinfo('Info', 'If FILE is an .ico file, add the icon to the final executable.')
def get_directory_string(string):
if string == 'versionfile':
filename = filedialog.askopenfilename(filetypes=[('Version File', '*.txt')])
entry2.delete(0, tk.END)
if filename == '':
pass
else:
entry2.insert(tk.END, str(filename))
elif string == 'script':
filename = filedialog.askopenfilename(filetypes=[('Python Script', '*.py | *.pyw')])
entry3.delete(0, tk.END)
if filename == '':
pass
else:
entry3.insert(tk.END, str(filename))
elif string == 'icon':
filename = filedialog.askopenfilename(filetypes=[('Icon', '*.ico')])
entry4.delete(0, tk.END)
if filename == '':
pass
else:
entry4.insert(tk.END, str(filename))
build_command('')
def build_command(*args):
string = 'pyinstaller --clean '+self.ComboBoxVar1.get()+self.CheckBoxVar2.get()+self.CheckBoxVar3.get()
if self.CheckBoxVar1.get() == '' or entry1.get().strip() == '':
pass
else:
string += self.CheckBoxVar1.get()+'="'+entry1.get().strip()+'"'
if self.CheckBoxVar4.get() == '' or entry2.get().strip() == '':
pass
else:
string += self.CheckBoxVar4.get()+'="'+entry2.get().strip()+'"'
if entry3.get().strip() == '':
pass
else:
string += ' "'+entry3.get()+'"'
if self.CheckBoxVar5.get() == '' or entry4.get().strip() == '':
pass
else:
string += self.CheckBoxVar5.get()+' "'+entry4.get()+'"'
entry5.delete(0, tk.END)
entry5.insert(tk.END, string)
def run_build():
if entry3.get().strip() == '':
pass
else:
os.system(str(entry5.get().strip()))
self.ComboBoxVar1.set(' --console')
self.CheckBoxVar1.set('')
entry1.delete(0, tk.END)
self.CheckBoxVar2.set('')
self.CheckBoxVar3.set(' --noupx')
self.CheckBoxVar4.set('')
entry2.delete(0, tk.END)
entry3.delete(0, tk.END)
self.CheckBoxVar5.set('')
entry4.delete(0, tk.END)
build_command('')
menubar = tk.Menu(parent)
filemenu = tk.Menu(menubar, tearoff=0)
filemenu.add_command(label='Exit', command=parent.destroy)
menubar.add_cascade(label='File', menu=filemenu)
toolsmenu = tk.Menu(menubar, tearoff=0)
toolsmenu.add_command(label='set_version', command=call_set_version)
toolsmenu.add_command(label='GrabVersion', command=call_grab_version)
menubar.add_cascade(label='Tools', menu=toolsmenu)
helpmenu = tk.Menu(menubar, tearoff=0)
helpmenu.add_command(label='PyInstaller Documentation', command=documentation_pyinstaller)
helpmenu.add_command(label='PyInstaller Download', command=download_py_installer)
helpmenu.add_command(label='UPX Download', command=download_upx)
menubar.add_cascade(label='Help', menu=helpmenu)
parent.config(menu=menubar)
self.logoImage = ImageTk.PhotoImage(Image.open('images/logo.png'))
label1 = tk.Label(parent, image=self.logoImage)
label1.pack(side=tk.TOP)
self.ComboBoxVar1 = tk.StringVar()
self.ComboBoxVar1.set(' --console')
combobox1 = ttk.Combobox(parent, values=[' --console', ' --windowed'], textvariable=self.ComboBoxVar1,
state='readonly')
combobox1.place(width=143, height=21, x=10, y=124)
combobox1.bind('<<ComboboxSelected>>', build_command)
button1 = ttk.Button(parent, text='Info', width=5, command=lambda: command_info('subsystem'))
button1.place(width=40, height=25, x=163, y=124)
self.CheckBoxVar1 = tk.StringVar()
self.CheckBoxVar1.set('')
checkbox1 = ttk.Checkbutton(parent, text='--name', variable=self.CheckBoxVar1, onvalue=' --name', offvalue='',
command=lambda: build_command(''))
checkbox1.place(width=63, height=21, x=245, y=124)
entry1 = ttk.Entry(parent)
entry1.place(width=126, height=21, x=318, y=124)
button2 = ttk.Button(parent, text='Info', width=5, command=lambda: command_info('name'))
button2.place(width=40, height=25, x=454, y=124)
self.CheckBoxVar2 = tk.StringVar()
self.CheckBoxVar2.set('')
checkbox2 = ttk.Checkbutton(parent, text='--onefile', variable=self.CheckBoxVar2, onvalue=' --onefile',
offvalue='', command=lambda: build_command(''))
checkbox2.place(width=69, height=21, x=10, y=159)
button3 = ttk.Button(parent, text='Info', width=5, command=lambda: command_info('onefile'))
button3.place(width=40, height=25, x=89, y=159)
self.CheckBoxVar3 = tk.StringVar()
self.CheckBoxVar3.set(' --noupx')
checkbox3 = ttk.Checkbutton(parent, text='--noupx', variable=self.CheckBoxVar3, onvalue=' --noupx',
offvalue='', command=lambda: build_command(''))
checkbox3.place(width=66, height=21, x=164, y=159)
button4 = ttk.Button(parent, text='Info', width=5, command=lambda: command_info('noupx'))
button4.place(width=40, height=25, x=240, y=159)
self.CheckBoxVar4 = tk.StringVar()
self.CheckBoxVar4.set('')
checkbox4 = ttk.Checkbutton(parent, text='--version-file', variable=self.CheckBoxVar4,
onvalue=' --version-file', offvalue='', command=lambda: build_command(''))
checkbox4.place(width=92, height=21, x=10, y=194)
button5 = ttk.Button(parent, text='Browse', command=lambda: get_directory_string('versionfile'))
button5.place(width=76, height=25, x=112, y=194)
entry2 = ttk.Entry(parent)
entry2.place(width=248, height=21, x=198, y=197)
button6 = ttk.Button(parent, text='Info', width=5, command=lambda: command_info('versionfile'))
button6.place(width=40, height=25, x=456, y=194)
label2 = tk.Label(parent, text='Script', bg=COLOR)
label2.place(width=36, height=21, x=10, y=229)
button7 = ttk.Button(parent, text='Browse', command=lambda: get_directory_string('script'))
button7.place(width=76, height=25, x=56, y=229)
entry3 = ttk.Entry(parent)
entry3.place(width=354, height=21, x=142, y=229)
self.CheckBoxVar5 = tk.StringVar()
self.CheckBoxVar5.set('')
checkbox5 = ttk.Checkbutton(parent, text='--icon', variable=self.CheckBoxVar5, onvalue=' --icon',
offvalue='', command=lambda: build_command(''))
checkbox5.place(width=56, height=21, x=10, y=264)
button8 = ttk.Button(parent, text='Browse', command=lambda: get_directory_string('icon'))
button8.place(width=76, height=25, x=76, y=264)
entry4 = ttk.Entry(parent)
entry4.place(width=284, height=21, x=162, y=264)
button9 = ttk.Button(parent, text='Info', width=5, command=lambda: command_info('icon'))
button9.place(width=40, height=25, x=456, y=264)
label3 = tk.Label(parent, text='Command', bg=COLOR)
label3.place(width=63, height=21, x=10, y=299)
entry5 = ttk.Entry(parent)
entry5.place(width=363, height=21, x=83, y=299)
build_command('')
button10 = ttk.Button(parent, text='Build', command=run_build)
button10.place(width=76, height=25, x=(506/2)-86, y=340)
button11 = ttk.Button(parent, text='Close', command=parent.destroy)
button11.place(width=76, height=25, x=(506/2)+10, y=340)
ttk.Style().configure('TCheckbutton', background=COLOR)
class SetVetsionFile(tk.Toplevel):
def __init__(self, parent):
tk.Toplevel.__init__(self, parent)
self.transient(parent)
self.result = None
self.grab_set()
w = 506
h = 300
sw = self.winfo_screenwidth()
sh = self.winfo_screenheight()
x = (sw - w)/2
y = (sh - h)/2
self.geometry('{0}x{1}+{2}+{3}'.format(w, h, int(x), int(y)))
self.resizable(width=False, height=False)
self.configure(background=COLOR)
self.title('Set Version File')
self.wm_iconbitmap('images/python.ico')
def get_directory_string(string):
if string == 'fileversion':
filename = filedialog.askopenfilename(filetypes=[('Version File', '*.txt')])
entry1.delete(0, tk.END)
if filename == '':
pass
else:
entry1.insert(tk.END, str(filename))
elif string == 'executable':
filename = filedialog.askopenfilename(filetypes=[('Executable', '*.exe')])
entry2.delete(0, tk.END)
if filename == '':
pass
else:
entry2.insert(tk.END, str(filename))
entry3.delete(0, tk.END)
string = 'pyi-set_version'
if str(entry1.get().strip()) == '':
pass
else:
string += ' "'+str(entry1.get())+'"'
if str(entry2.get().strip()) == '':
pass
else:
string += ' "'+str(entry2.get())+'"'
entry3.insert(tk.END, string)
self.logoImage = ImageTk.PhotoImage(Image.open('images/logo.png'))
label1 = tk.Label(self, image=self.logoImage)
label1.pack(side=tk.TOP)
def set_version():
os.system('pyi-set_version "'+str(entry1.get().strip())+'" "'+str(entry2.get().strip())+'"')
entry1.delete(0, tk.END)
entry2.delete(0, tk.END)
entry3.delete(0, tk.END)
entry3.insert(tk.END, 'pyi-set_version')
label2 = tk.Label(self, text='File Version', bg=COLOR)
label2.place(x=10, y=120)
button1 = ttk.Button(self, text='Browse', command=lambda: get_directory_string('fileversion'))
button1.place(x=80, y=120)
entry1 = ttk.Entry(self)
entry1.place(width=506-76-100, height=21, x=165, y=122)
label3 = tk.Label(self, text='Executable', bg=COLOR)
label3.place(x=10, y=155)
button2 = ttk.Button(self, text='Browse', command=lambda: get_directory_string('executable'))
button2.place(x=80, y=155)
entry2 = ttk.Entry(self)
entry2.place(width=330, height=21, x=165, y=157)
label4 = tk.Label(self, text='Command', bg=COLOR)
label4.place(x=10, y=192)
entry3 = ttk.Entry(self)
entry3.place(width=365, height=21, x=80, y=192)
entry3.insert(tk.END, 'pyi-set_version')
button4 = ttk.Button(self, text='Set Version', command=set_version)
button4.place(width=76, height=25, x=(506/2)-86, y=235)
button5 = ttk.Button(self, text='Close', command=self.destroy)
button5.place(width=76, height=25, x=(506/2)+10, y=235)
class GrabVersionFile(tk.Toplevel):
def __init__(self, parent):
tk.Toplevel.__init__(self, parent)
self.transient(parent)
self.result = None
self.grab_set()
w = 506
h = 230
sw = self.winfo_screenwidth()
sh = self.winfo_screenheight()
x = (sw - w)/2
y = (sh - h)/2
self.geometry('{0}x{1}+{2}+{3}'.format(w, h, int(x), int(y)))
self.resizable(width=False, height=False)
self.configure(background=COLOR)
self.title('Set Version File')
self.wm_iconbitmap('images/python.ico')
def get_directory_string(string):
if string == 'executable':
filename = filedialog.askopenfilename(filetypes=[('Executable', '*.exe')])
entry1.delete(0, tk.END)
if filename == '':
pass
else:
entry1.insert(tk.END, str(filename))
entry2.delete(0, tk.END)
string = 'pyi-grab_version'
if str(entry1.get().strip()) == '':
pass
else:
string += ' "'+str(entry1.get())+'"'
entry2.insert(tk.END, string)
self.logoImage = ImageTk.PhotoImage(Image.open('images/logo.png'))
label1 = tk.Label(self, image=self.logoImage)
label1.pack(side=tk.TOP)
def grab_version():
string = 'pyi-grab_version "'+str(entry1.get().strip())+'"'
os.system(string)
entry1.delete(0, tk.END)
entry2.delete(0, tk.END)
entry2.insert(tk.END, 'pyi-grab_version')
label2 = tk.Label(self, text='Executable', bg=COLOR)
label2.place(x=10, y=120)
button1 = ttk.Button(self, text='Browse', command=lambda: get_directory_string('executable'))
button1.place(x=80, y=120)
entry1 = ttk.Entry(self)
entry1.place(width=506-76-100, height=21, x=165, y=122)
label3 = tk.Label(self, text='Command', bg=COLOR)
label3.place(x=10, y=155)
entry2 = ttk.Entry(self)
entry2.place(width=365, height=21, x=80, y=155)
entry2.insert(tk.END, 'pyi-grab_version')
button3 = ttk.Button(self, text='Grab Version', command=grab_version)
button3.place(width=76, height=25, x=(506/2)-86, y=190)
button4 = ttk.Button(self, text='Close', command=self.destroy)
button4.place(width=76, height=25, x=(506/2)+10, y=190)
def main():
root = tk.Tk()
root.geometry('506x400')
root.resizable(False, False)
root.title('PyInstaller GUI Version: '+str(__version__))
root.wm_iconbitmap('images/python.ico')
root.configure(background=COLOR)
MainApp(root)
root.mainloop()
if __name__ == '__main__':
main()