Arreglado el historico
This commit is contained in:
parent
ac621f63aa
commit
504698c98d
@ -25,17 +25,19 @@ def handle(req):
|
||||
"""handle a request to the function
|
||||
Args:
|
||||
req (str): request body
|
||||
|
||||
{
|
||||
p: prefijo del nombre,
|
||||
g: genero del nombre,
|
||||
a: año de nacimiento
|
||||
}
|
||||
|
||||
[nombre1, nombre2, ... nombreN]
|
||||
|
||||
"""
|
||||
nombres = []
|
||||
try:
|
||||
nombres = [remove_accents(req.strip().lower()) for x in req.split(",")]
|
||||
nombres = loads(req)
|
||||
nombres = [remove_accents(x.strip().lower()) for x in nombres]
|
||||
nombres = [n for n in nombres if n]
|
||||
except Exception:
|
||||
pass
|
||||
|
||||
if not nombres:
|
||||
nombres = ["maria", "juan"]
|
||||
|
||||
chart = pygal.Line(
|
||||
|
Loading…
Reference in New Issue
Block a user