5fd042e7d1
Applies to drivers/examples/extmod/port-modules/tools. This work was funded through GitHub Sponsors. Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
33 lines
679 B
Python
33 lines
679 B
Python
import socket
|
|
import ssl
|
|
|
|
|
|
def main(use_stream=True):
|
|
s = socket.socket()
|
|
|
|
ai = socket.getaddrinfo("google.com", 443)
|
|
print("Address infos:", ai)
|
|
addr = ai[0][-1]
|
|
|
|
print("Connect address:", addr)
|
|
s.connect(addr)
|
|
|
|
s = ssl.wrap_socket(s)
|
|
print(s)
|
|
|
|
if use_stream:
|
|
# Both CPython and MicroPython SSLSocket objects support read() and
|
|
# write() methods.
|
|
s.write(b"GET / HTTP/1.0\r\n\r\n")
|
|
print(s.read(4096))
|
|
else:
|
|
# MicroPython SSLSocket objects implement only stream interface, not
|
|
# socket interface
|
|
s.send(b"GET / HTTP/1.0\r\n\r\n")
|
|
print(s.recv(4096))
|
|
|
|
s.close()
|
|
|
|
|
|
main()
|