Fixing utf-8 encoding when writing files.

pull/7/head
Ayush Sharma 2019-05-10 22:43:24 +05:30
parent 74bc7398bb
commit 0c596d5f91
1 changed files with 3 additions and 2 deletions

View File

@ -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()