2023-06-08 07:01:38 +01:00
|
|
|
# Test simple HTTP request with asyncio.open_connection()
|
2020-03-12 00:57:15 +00:00
|
|
|
|
|
|
|
try:
|
2023-06-08 07:01:38 +01:00
|
|
|
import asyncio
|
2020-03-12 00:57:15 +00:00
|
|
|
except ImportError:
|
2023-06-08 07:01:38 +01:00
|
|
|
print("SKIP")
|
|
|
|
raise SystemExit
|
2020-03-12 00:57:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
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"))
|