micropython/tests/net_inet/asyncio_open_connection.py
Jim Mussared 6027c41c8f tests: Rename uasyncio to asyncio.
This work was funded through GitHub Sponsors.

Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
2023-06-19 17:33:03 +10:00

28 lines
558 B
Python

# Test simple HTTP request with asyncio.open_connection()
try:
import asyncio
except ImportError:
print("SKIP")
raise SystemExit
async def http_get(url):
reader, writer = await asyncio.open_connection(url, 80)
print("write GET")
writer.write(b"GET / HTTP/1.0\r\n\r\n")
await writer.drain()
print("read response")
data = await reader.read(100)
print("read:", data.split(b"\r\n")[0])
print("close")
writer.close()
await writer.wait_closed()
print("done")
asyncio.run(http_get("micropython.org"))