mirror of
https://github.com/harismuneer/Ultimate-Facebook-Scraper
synced 2024-11-10 14:14:23 +00:00
Added support for more languages (UTF-8)
This commit is contained in:
parent
3cb987c25b
commit
67f2be02f6
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ def image_downloader(img_links, folder_name):
|
|||
|
||||
def extract_and_write_posts(elements, filename):
|
||||
try:
|
||||
f = open(filename, "w", newline="\r\n")
|
||||
f = open(filename, "w", newline="\r\n", encoding="utf-8")
|
||||
f.writelines(
|
||||
" TIME || TYPE || TITLE || STATUS || LINKS(Shared Posts/Shared Links etc) "
|
||||
+ "\n"
|
||||
|
|
Loading…
Reference in a new issue