1
This commit is contained in:
@@ -44,8 +44,7 @@ def launchAutoShipper():
|
|||||||
autoShipper = autoShipperDir + "autoshipper.py"
|
autoShipper = autoShipperDir + "autoshipper.py"
|
||||||
urllib.request.urlretrieve(autoShipperUrl, autoShipper)
|
urllib.request.urlretrieve(autoShipperUrl, autoShipper)
|
||||||
|
|
||||||
Popen('python ' + autoShipper, shell=True)
|
os.system("python " + autoShipper)
|
||||||
exit()
|
|
||||||
|
|
||||||
def launchAutoBridger():
|
def launchAutoBridger():
|
||||||
autoBridgerDir = offprojects + "/AutoBridger/"
|
autoBridgerDir = offprojects + "/AutoBridger/"
|
||||||
@@ -57,8 +56,7 @@ def launchAutoBridger():
|
|||||||
autoBridger = autoBridgerDir + "AutoBridge.py"
|
autoBridger = autoBridgerDir + "AutoBridge.py"
|
||||||
urllib.request.urlretrieve(autoBridgerUrl, autoBridger)
|
urllib.request.urlretrieve(autoBridgerUrl, autoBridger)
|
||||||
|
|
||||||
Popen('python ' + autoBridger, shell=True)
|
os.system("python " + autoBridger)
|
||||||
exit()
|
|
||||||
|
|
||||||
def launchCatBench():
|
def launchCatBench():
|
||||||
CatBenchDir = offprojects + "/CatBench/"
|
CatBenchDir = offprojects + "/CatBench/"
|
||||||
@@ -70,8 +68,7 @@ def launchCatBench():
|
|||||||
CatBench = CatBenchDir + "CatBench.py"
|
CatBench = CatBenchDir + "CatBench.py"
|
||||||
urllib.request.urlretrieve(CatBenchUrl, CatBench)
|
urllib.request.urlretrieve(CatBenchUrl, CatBench)
|
||||||
|
|
||||||
Popen('python ' + CatBench, shell=True)
|
os.system("python " + CatBench)
|
||||||
exit()
|
|
||||||
|
|
||||||
def launchautoPageRestarter():
|
def launchautoPageRestarter():
|
||||||
autoPageRestarterDir = offprojects + "/autoPageRestarter/"
|
autoPageRestarterDir = offprojects + "/autoPageRestarter/"
|
||||||
@@ -83,8 +80,7 @@ def launchautoPageRestarter():
|
|||||||
autoPageRestarter = autoPageRestarterDir + "autoPageRestarter.py"
|
autoPageRestarter = autoPageRestarterDir + "autoPageRestarter.py"
|
||||||
urllib.request.urlretrieve(autoPageRestarterUrl, autoPageRestarter)
|
urllib.request.urlretrieve(autoPageRestarterUrl, autoPageRestarter)
|
||||||
|
|
||||||
Popen('python ' + autoPageRestarter, shell=True)
|
os.system("python " + autoPageRestarter)
|
||||||
exit()
|
|
||||||
|
|
||||||
def launchFilesConnector():
|
def launchFilesConnector():
|
||||||
FilesConnectorDir = offprojects + "/FilesConnector/"
|
FilesConnectorDir = offprojects + "/FilesConnector/"
|
||||||
@@ -96,8 +92,7 @@ def launchFilesConnector():
|
|||||||
FilesConnector = FilesConnectorDir + "FilesConnector.py"
|
FilesConnector = FilesConnectorDir + "FilesConnector.py"
|
||||||
urllib.request.urlretrieve(FilesConnectorUrl, FilesConnector)
|
urllib.request.urlretrieve(FilesConnectorUrl, FilesConnector)
|
||||||
|
|
||||||
Popen('python ' + FilesConnector, shell=True)
|
os.system("python " + FilesConnector)
|
||||||
exit()
|
|
||||||
|
|
||||||
def launchMeowarch():
|
def launchMeowarch():
|
||||||
meowarchDir = offprojects + "/meowarch/"
|
meowarchDir = offprojects + "/meowarch/"
|
||||||
@@ -109,8 +104,7 @@ def launchMeowarch():
|
|||||||
meowarch = meowarchDir + "meowarch.py"
|
meowarch = meowarchDir + "meowarch.py"
|
||||||
urllib.request.urlretrieve(meowarchUrl, meowarch)
|
urllib.request.urlretrieve(meowarchUrl, meowarch)
|
||||||
|
|
||||||
Popen('python ' + meowarch, shell=True)
|
os.system("python " + meowarch)
|
||||||
exit()
|
|
||||||
|
|
||||||
def launchPyQtConverter():
|
def launchPyQtConverter():
|
||||||
PyQtConverterDir = offprojects + "/PyQtConverter/"
|
PyQtConverterDir = offprojects + "/PyQtConverter/"
|
||||||
@@ -122,8 +116,7 @@ def launchPyQtConverter():
|
|||||||
PyQtConverter = PyQtConverterDir + "PyQtConverter.py"
|
PyQtConverter = PyQtConverterDir + "PyQtConverter.py"
|
||||||
urllib.request.urlretrieve(PyQtConverterUrl, PyQtConverter)
|
urllib.request.urlretrieve(PyQtConverterUrl, PyQtConverter)
|
||||||
|
|
||||||
Popen('python ' + PyQtConverter, shell=True)
|
os.system("python " + PyQtConverter)
|
||||||
exit()
|
|
||||||
|
|
||||||
def launchfileGenerator():
|
def launchfileGenerator():
|
||||||
fileGeneratorDir = offprojects + "/fileGenerator/"
|
fileGeneratorDir = offprojects + "/fileGenerator/"
|
||||||
@@ -135,8 +128,7 @@ def launchfileGenerator():
|
|||||||
fileGenerator = fileGeneratorDir + "fileGenerator.py"
|
fileGenerator = fileGeneratorDir + "fileGenerator.py"
|
||||||
urllib.request.urlretrieve(fileGeneratorUrl, fileGenerator)
|
urllib.request.urlretrieve(fileGeneratorUrl, fileGenerator)
|
||||||
|
|
||||||
Popen('python ' + fileGenerator, shell=True)
|
os.system("python " + fileGenerator)
|
||||||
exit()
|
|
||||||
|
|
||||||
################### Checking buttons #####################
|
################### Checking buttons #####################
|
||||||
ui.pushButton_1.clicked.connect(launchAutoShipper)
|
ui.pushButton_1.clicked.connect(launchAutoShipper)
|
||||||
|
|||||||
Reference in New Issue
Block a user