aboutsummaryrefslogtreecommitdiff
path: root/tests/net_inet/uasyncio_open_connection.py
blob: 68285a2437d643b94be7197b31f4bbbfaf20a4de (plain)
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
26
27
28
29
30
# Test simple HTTP request with uasyncio.open_connection()

try:
    import uasyncio as asyncio
except ImportError:
    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"))