refactor: screenshot downloader now uses toml config

pull/861/head
Callum Leslie 2 years ago
parent 9c87cb7d95
commit ead88d93a1
No known key found for this signature in database
GPG Key ID: D382C4AFEECEAA90

@ -1,5 +1,4 @@
import json
import os
from pathlib import Path
from typing import Dict
@ -58,7 +57,7 @@ def download_screenshots_of_reddit_posts(reddit_object: dict, screenshot_num: in
if settings.config["reddit"]["thread"]["post_lang"]:
print_substep("Translating post...")
texts_in_tl = ts.google(reddit_object["thread_title"], to_language=os.getenv("POSTLANG"))
texts_in_tl = ts.google(reddit_object["thread_title"], to_language=settings.config["reddit"]["thread"]["post_lang"])
page.evaluate(
"tl_content => document.querySelector('[data-test-id=\"post-content\"] > div:nth-child(3) > div > div').textContent = tl_content",

Loading…
Cancel
Save