-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathutil.py
58 lines (45 loc) · 1.51 KB
/
util.py
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
# coding=utf-8
import importlib
import os
import platform
import sys
import subprocess
def confirmation():
oui = {"oui", "o", ""}
non = {"non", "n"}
choix = input("(oui/non) ").lower()
if choix in oui:
return True
elif choix in non:
return False
else:
print("Choix invalide. Entrez oui ou non.")
return confirmation()
def exit_pause(status=0, error_message=""):
if error_message:
print(error_message)
if platform.system() == "Windows" and "PROMPT" not in os.environ:
# Si le script a été lancé en dehors de cmd (en double-cliquant), on pause l'exécution
# pour laisser la possibilité de lire la sortie.
# La variable PROMPT n'est présente qu'avec cmd (https://stackoverflow.com/q/558776/119323)
input("Appuyez sur une touche pour terminer")
sys.exit(status)
def has_dependency(name):
try:
importlib.import_module(name)
return True
except ImportError:
return False
def install_package(name):
print("Installation du package {}".format(name))
try:
subprocess.check_call([sys.executable, '-m', 'pip', 'install', name])
print("Installation du package {} OK".format(name))
except subprocess.CalledProcessError:
print("Echec de l'installation du package {}".format(name))
exit_pause(1)
def check_dependencies():
dependencies = ('requests',)
for package in dependencies:
if not has_dependency(package):
install_package(package)