Skip to content

Instantly share code, notes, and snippets.

View pemn's full-sized avatar

Paulo Ernesto pemn

View GitHub Profile
@pemn
pemn / ipc.py
Last active February 1, 2020 11:31 — forked from dankrause/ipc.py
Simple socket IPC in python (updated for python3)
import socketserver
import socket
import struct
import json
import collections
class IPCError(Exception):
pass