Skip to content

Instantly share code, notes, and snippets.

View glinders's full-sized avatar

Geert Linders glinders

View GitHub Profile
@glinders
glinders / tcpclient.py
Last active January 2, 2019 22:12
Interactive TCP client using threads
#!/usr/bin/env python
import socket
import sys
import os
import multiprocessing
TCP_IP = '192.168.1.100'
TCP_PORT = 8234
BUFFER_SIZE = 8192