This repository has been archived by the owner on Oct 28, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemtVlc.py
109 lines (96 loc) · 3.71 KB
/
emtVlc.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import sys
# https://docs.python.org/3.6/library/urllib.html
import urllib.request # for parsing URLs
import urllib.parse # for opening and reading URLs
from bs4 import BeautifulSoup as bs
from modules.emtSaldo import prime_saldo
# VARS
path = "./info/"
numParada = ""
numLinea = ""
# FUNCS
# Funcion que obtiene los datos de la web de EMT Vlc
def get_parada(numParada, linea='', adaptados=0, user='Anonimo', idioma='es'):
emtVars = {'parada': numParada,
'linea': numLinea,
'adaptados': adaptados,
'usuario': user,
'idioma': idioma
}
emtVars = urllib.parse.urlencode(emtVars)
emtArgs = emtVars.encode('ascii')
emtUrl = 'https://www.emtvalencia.es/ciudadano/modules/mod_tiempo/busca_parada.php'
req = urllib.request.Request(emtUrl, emtArgs)
req.add_header("Content-type", "application/x-www-form-urlencoded")
data = urllib.request.urlopen(req).read().decode('utf-8')
return data
# Funcion para crear el objeto "soup"
def soup_html(numParada):
# Datos que provienen de la funcion get_parada
raw_data = get_parada(numParada)
soup = bs(raw_data, "html.parser")
return soup
# Funcion que devuelve los proximos buses
def prime_buses(numParada):
# Objeto que proviene de la funcion soup_html
data = soup_html(numParada)
# Todos los span
# spans = data.select('span')
# Los span con la imagen de la linea
# span_linea = data.find_all('span', {'class': 'imagenParada'})
# Los span con el nombre de la linea y el tiempo
span_tiempos = data.find_all('span', {'class': 'llegadaHome'})
# Los img donde aparece la linea
imgElem = data.select('img')
buses = ''
linea = ''
# Bucle para mostrar linea y tiempo
for span, img in zip(span_tiempos, imgElem):
linea = img.get('title')
show = span.getText(strip=True)
# show = show.encode('utf-8')
linea = str(linea)
show = str(show)
# print(linea, show)
buses += linea + ': ' + show + "\n"
if buses == 'None: PARADA NO CORRESPONDE\n':
buses = "La linea " + numLinea + " no pasa por esta parada."
return buses
elif buses == 'None: LINEA NO ENCONTRADA\n':
buses = "Todavia no hay estimaciones para la linea " + numLinea + " en esta parada."
return buses
if linea == 'None':
buses = "Temporalmente fuera de servicio."
if buses == '':
buses += "No quedan buses... O la parada introducida no existe."
return buses
if len(sys.argv) == 1:
mensaje = "Uso:\n python3 /route/to/emtVlc.py <Número Parada> <Linea (Opcional)>\n"
mensaje += " python3 /route/to/emtVlc.py -s <Número Tarjeta>"
else:
if sys.argv[1] == '-s':
if len(sys.argv) < 3:
mensaje = "Opción para consultar saldo:\n"
mensaje += " python3 /route/to/emtVlc.py -s <Número Tarjeta>"
else:
mensaje = prime_saldo(sys.argv[2])
else:
numParada = numParada + sys.argv[1]
if not numParada.isdigit():
mensaje = "No has introducido un número de parada válido."
else:
print("Parada: " + numParada)
if len(sys.argv) > 2:
numLinea = numLinea + sys.argv[2]
numLinea = numLinea.lower()
with open(path+'numeroLineas.txt') as file:
lineasEMT = file.read().splitlines()
if numLinea in lineasEMT:
print("Linea: " + numLinea)
else:
print("La linea \"" + numLinea + "\" no existe.")
numLinea = ''
mensaje = prime_buses(numParada)
print(mensaje)