mirror of
https://github.com/autistic-symposium/web3-starter-py.git
synced 2025-05-17 06:02:12 -04:00
6 lines
No EOL
136 B
Python
6 lines
No EOL
136 B
Python
import socket
|
|
|
|
HOST = 'www.github.com'
|
|
PORT = 80
|
|
client = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
|
client.connect((HOST, PORT)) |