It’s Python, Not Python 2, Not Python 3
There’s no “Python 2” or “Python 3”, the language is same as before.
Read more »
A command pattern that I’ve used in multiple projects is an event-loop sidecar. The sidecar runs on it’s own thread and
does asynchronous IO; thereby increasing the responsiveness of the system which could be doing IO/CPU bound work. The
application (runn… Read more