-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
25 lines (19 loc) · 876 Bytes
/
main.py
File metadata and controls
25 lines (19 loc) · 876 Bytes
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
# ---------------------------------------------------------
# Descripción
# ---------------------------------------------------------
# Este es el archivo principal del programa.
# Aquí se inicializa la aplicación y se carga el formulario.
#
# La base de esté código se tomó de
# https://www.tutorialesprogramacionya.com/pythonya/detalleconcepto.php?punto=88&codigo=89&inicio=75
# ---------------------------------------------------------
# ---------------------------------------------------------
# Librerías a usar
# ---------------------------------------------------------
import Form
# ---------------------------------------------------------
# ---------------------------------------------------------
# Clase a usar
# ---------------------------------------------------------
form = Form.Form()
# ---------------------------------------------------------