forked from giancarlocp/sefart-basic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.py
28 lines (22 loc) · 753 Bytes
/
test.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
#!/bin/python3
from PyZenity import ErrorMessage, InfoMessage
from tkinter.filedialog import askopenfilename
from tkinter import *
def main():
print("\t [SEFART BASIC]")
archivo = None
try:
Tk().withdraw()
archivo = askopenfilename()
except TypeError as ex:
ErrorMessage("Ha ocurrido una excepcion al obtener el archivo: "+str(ex))
if archivo != None:
try:
InfoMessage("\t[Archivo]\n\tSeleccion: "+str(archivo))
archivo = open(archivo)
for linea in archivo:
print(linea)
except Exception as ex:
ErrorMessage("Ha ocurrido un error al tratar de mostrar la información: "+str(ex))
if __name__ == '__main__':
main()