-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
41 lines (29 loc) · 773 Bytes
/
main.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
# -*- coding:utf8 -*-
#
# Author:
# Christian Barral
#
# Description:
# Script principal de la aplicacion
import sys
import os
import lib.helpers.os_utils as ou
from lib.web_service import WebServer
def is_python_3() -> bool:
""" Comprueba si la version actual es python 3
"""
return sys.version_info[0] == 3
def main():
""" Aquí debe ir el código principal de la aplicación
"""
if not is_python_3():
print('ERROR: Se requiere Python 3')
sys.exit(-1)
if not ou.exists_dir('/opt/reparto_material'):
os.mkdir('/opt/reparto_material')
WebServer.WebServer(8081).launcher_server()
if __name__ == '__main__':
try:
main()
except KeyboardInterrupt:
print('Interrumpido por el usuario.')