https://docs.python.org/3/library/gzip.html
I am considering to use gzip.open(), and I am a little confused about the mode argument:
gzip.open()
mode
It means that r defaults to rb, and if you want text you have to specify it using rt.
r
rb
rt
(as opposed to open behaviour where r means rt, not rb)
open