This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
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: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import multiprocessing | |
import pickle | |
import struct | |
from typing import Optional, Callable, List, Any | |
from tqdm import tqdm | |
import pickle | |
import struct |
NewerOlder