This commit is contained in:
BarsTiger
2021-06-01 18:25:14 +03:00
parent 164e0607ed
commit 6cd32cd7d3

View File

@@ -1,6 +1,12 @@
import os, easygui, time import os, time, subprocess, sys
from os.path import basename from os.path import basename
from subprocess import * from subprocess import *
try:
import easygui
except:
subprocess.check_call([sys.executable, "-m", "pip", "install", 'easygui'])
import easygui
slash = '/' slash = '/'
start = easygui.buttonbox("Open file (image, text, sound, what you want) to push archive in", "FilesConnector", ("Browse file", "Cancel")) start = easygui.buttonbox("Open file (image, text, sound, what you want) to push archive in", "FilesConnector", ("Browse file", "Cancel"))