On the development machine (macOS Mojave 10.14.6, Python 3.8.3) the script outputs to shell without issues, but on other platforms (e.g. Windows) looks like the output buffer is enabled by default.
As a temporary fix is necessary to run the script with python -u retweeter.py, in order to disable the buffering and display output from the program at the time that it is printed (rather than when execution is halted).
TO DO: the behaviour should be the same on each platform (macOS/Linux/Windows).
On the development machine (macOS Mojave 10.14.6, Python 3.8.3) the script outputs to shell without issues, but on other platforms (e.g. Windows) looks like the output buffer is enabled by default.
As a temporary fix is necessary to run the script with
python -u retweeter.py, in order to disable the buffering and display output from the program at the time that it is printed (rather than when execution is halted).TO DO: the behaviour should be the same on each platform (macOS/Linux/Windows).