Merge pull request #7 from ayush-sharma/fix/utf8
Fixing utf-8 encoding when writing files.pull/8/head v1.5.1
commit
0c6a14acd1
|
@ -2,7 +2,6 @@ import helpers
|
|||
import requests
|
||||
from bs4 import BeautifulSoup
|
||||
from pathlib import Path
|
||||
import codecs
|
||||
|
||||
|
||||
def getTweets():
|
||||
|
@ -107,7 +106,9 @@ def tootTheTweet(tweet):
|
|||
|
||||
else:
|
||||
|
||||
tweet_check = codecs.open(tweet_check_file_path, mode='w', encoding='utf-8')
|
||||
tweet['text'].encoding('utf-8')
|
||||
|
||||
tweet_check = open(tweet_check_file_path, mode='w')
|
||||
tweet_check.write(tweet['text'])
|
||||
tweet_check.close()
|
||||
|
||||
|
|
Loading…
Reference in New Issue