This file contains 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
"""Snippet for just-add-water multithreading with AWS SQS service. | |
Does not currently check for send errors but will one day... | |
@author Elliot BP (github: ebbp0) <[email protected]> | |
""" | |
import json | |
from multiprocessing import Process, Pipe | |
from typing import Any |