Imported check_call, getuid

This commit is contained in:
sTiKyt 2020-05-13 18:44:27 +03:00
parent 0c910ddded
commit a273eb3a7a
No known key found for this signature in database
GPG Key ID: 510E1C3C9B2414B4

View File

@ -6,12 +6,14 @@
#
from subprocess import call as run_command,Popen as run_background_command, check_output, CalledProcessError, DEVNULL, PIPE
from subprocess import call as run_command, check_call as try_to_run_command ,Popen as run_background_command, check_output, CalledProcessError, DEVNULL, PIPE
from distutils.dir_util import copy_tree as webpage_set
from time import sleep as wait
from os import path, system, chmod, stat, mkdir, remove, chdir, replace
from os import path, system, chmod, stat, mkdir, remove, chdir, replace, getuid
from shutil import rmtree, copyfile
from pathlib import Path as pathlib_Path
from pyngrok import ngrok
import re as regular_expression
import getpass, base64, socket, requests
import getpass, base64, socket, requests
from platform import system as platform_os
import requests