Funcion repetida
This commit is contained in:
parent
338944d82c
commit
abfe0cbf27
@ -155,21 +155,3 @@ def get_adrs(secret, nombre):
|
|||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
return last_results[f"ADR/{nombre}"]
|
return last_results[f"ADR/{nombre}"]
|
||||||
|
|
||||||
|
|
||||||
@router.get("/{secret}/ON/{nombre}")
|
|
||||||
def get_on(secret, nombre):
|
|
||||||
if secret != SECRET:
|
|
||||||
raise Exception("BAD")
|
|
||||||
nombre = nombre.upper()
|
|
||||||
access, refresh = get_token(ttl_hash=get_ttl_hash())
|
|
||||||
url = (
|
|
||||||
BASE_URL
|
|
||||||
+ f"/api/v2/Cotizaciones/obligacionesnegociables/ar/Todos?cotizacionInstrumentoModel.instrumento=obligacionesNegociables&cotizacionInstrumentoModel.pais=argentina&api_key={access}"
|
|
||||||
)
|
|
||||||
data = get(url, ttl_hash=get_ttl_hash())
|
|
||||||
try:
|
|
||||||
last_results[f"ON/{nombre}"]=[a for a in data["titulos"] if a["simbolo"] == nombre][0]
|
|
||||||
except:
|
|
||||||
pass
|
|
||||||
return last_results[f"ON/{nombre}"]
|
|
Loading…
Reference in New Issue
Block a user