Imported Popen, DEVNULL, mkdir, remove, chdir

This commit is contained in:
sTiKyt 2020-05-07 21:01:47 +03:00
parent 66cd9a3a12
commit 896be7e335
No known key found for this signature in database
GPG Key ID: 510E1C3C9B2414B4

View File

@ -1,7 +1,7 @@
from subprocess import call as run_command, check_output, CalledProcessError
from subprocess import call as run_command,Popen as run_background_command, check_output, CalledProcessError, DEVNULL
from distutils.dir_util import copy_tree as webpage_set
from time import sleep as wait
from os import path, system, chmod, stat
from os import path, system, chmod, stat, mkdir, remove, chdir
from shutil import rmtree, copyfile
from pathlib import Path as pathlib_Path
import re as regular_expression