Skip to content

Instantly share code, notes, and snippets.

@austospumanto
austospumanto / processit.py
Last active August 31, 2020 02:36
processit
"""
System/Runtime Requirements:
>=Python3.7
Linux / Mac
>=2 CPU Cores
Must pip install to run `processit`:
pickle5, tqdm
Must pip install to run the tests and some functions:
@austospumanto
austospumanto / execute_concurrently_without_pool.py
Created May 8, 2019 21:33
Executing CPU-intensive workloads via multiprocessing.Process sub-processes
import multiprocessing
import pickle
import struct
from typing import Optional, Callable, List, Any
from tqdm import tqdm
import pickle
import struct