Skip to content

Instantly share code, notes, and snippets.

View xl3ehindTim's full-sized avatar

Tim Brouwers xl3ehindTim

View GitHub Profile
@xl3ehindTim
xl3ehindTim / client.py
Created October 13, 2023 08:48
Client
import socket
import threading
class Client:
def __init__(self, server: str = "localhost", port: int = 6000):
self.server = server
self.port = port
self.socket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
self.socket.settimeout(0.1)