You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@rerox points out that this is caused by this line. When running in Python 3, file should be opened with 'wb' mode instead of 'w'. A better approach is to use codecs.
The text was updated successfully, but these errors were encountered:
When running
twitter-archiver
in Python 3, non-ASCII characters in tweets are incorrectly saved as "bytes":@rerox points out that this is caused by this line. When running in Python 3, file should be opened with
'wb'
mode instead of'w'
. A better approach is to use codecs.The text was updated successfully, but these errors were encountered: