Skip to content

Instantly share code, notes, and snippets.

View satchamo's full-sized avatar

Matt Johnson satchamo

View GitHub Profile
import asyncio
import functools
import os
import signal
import socket
import websockets
from multiprocessing import Process
from pathlib import Path
# this is set by the parent, and inherited by the children
def is_odd(n):
return n % 2 == 1
def some_func(my_arg):
print(my_arg)