# Programa para conectar el WIFI y solicitar a una API información
import network
import urequests
import time
#Conectando a WIFI
print ("Conectando a la red", end="")
sta_if = network.WLAN(network.STA_IF)
sta_if.active(True)
sta_if.connect('Wokwi-GUEST', '')
while not sta_if.isconnected():
print(".", end="")
time.sleep(0.50)
print("Conectando exitosamente")
#Envio del requerimiento por HTTP
print("enviando requerimineto por HTTPS....", end="")
response = urequests.get("https://reqres.in/api/users?page=2")
print(response.text)