Comment faire un simple client Python

import time
import sys
import socket
import os

s = socket.socket()
host = "User-PC"
port = 8080
s.connect((host,port))
print("")
print("connected to server")
print("")
Vast Vicuña