-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEducacion.py
25 lines (21 loc) · 1.09 KB
/
Educacion.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
import requests
from deep_translator import GoogleTranslator
def numeros(n):
""">>>>>>>>>>>>>>>>>> EJEMPLO DE USO DE API PARA SOLICITAR DATOS INTERESANTES DE UN NUMERO <<<<<<<<<<<<<<<<<<<"""
url=f"https://numbersapi.p.rapidapi.com/{n}/math"
querystring={"fragment":"true","json":"´true"}
headers={'x-rapidapi-key': "YOUR KEY",'x-rapidapi-host': "HOST"}
response=requests.request("GET", url, headers=headers, params=querystring)
respuesta=response.json()
respuesta=respuesta['text']
respuesta=GoogleTranslator(source='auto',target="es").translate(text=respuesta)
return respuesta.capitalize()+"."
def rand(n):
url=f"https://numbersapi.p.rapidapi.com/{n}/trivia"
querystring={"fragment":"true","notfound":"floor","json":"true"}
headers = {'x-rapidapi-key': "YOUR KEY",'x-rapidapi-host': "HOST"}
response=requests.request("GET", url, headers=headers, params=querystring)
respuesta=response.json()
respuesta=respuesta['text']
respuesta=GoogleTranslator(source='auto',target="es").translate(text=respuesta)
return respuesta.capitalize()+"."