When running the tests on Windows, I noticed that some of them fail because open() is called without specifying an encoding. On Linux, this works fine because the system default encoding usually matches the file, but on Windows the default is different (cp1252), which causes json.load to throw errors when reading tweets.json.
When running the tests on Windows, I noticed that some of them fail because open() is called without specifying an encoding. On Linux, this works fine because the system default encoding usually matches the file, but on Windows the default is different (cp1252), which causes json.load to throw errors when reading tweets.json.