From 9ca9664e56cff70c6484ae8a77cfd03486f57248 Mon Sep 17 00:00:00 2001 From: Michael Yick Date: Mon, 27 Feb 2023 17:34:37 -0600 Subject: enable tor support --- __pycache__/main.cpython-311.pyc | Bin 0 -> 3012 bytes main.py | 16 +++------------- 2 files changed, 3 insertions(+), 13 deletions(-) create mode 100644 __pycache__/main.cpython-311.pyc diff --git a/__pycache__/main.cpython-311.pyc b/__pycache__/main.cpython-311.pyc new file mode 100644 index 0000000..31ab1b1 Binary files /dev/null and b/__pycache__/main.cpython-311.pyc differ diff --git a/main.py b/main.py index 10efd18..4e2ce3f 100755 --- a/main.py +++ b/main.py @@ -28,20 +28,10 @@ async def root(): adapter = HTTPAdapter(max_retries=retry) session.mount('http://', adapter) session.mount('https://', adapter) + session.proxies = {'http': 'socks5://127.0.0.1:9050', 'https': 'socks5://127.0.0.1:9050'} + + search = session.get("https://dilbert.com/strip/" + date) - session.get("https://dilbert.com/strip/" + date) - - tries = 25 - for i in range(tries): - search = requests.get("https://dilbert.com/strip/" + date) - if search.status_code == 503: - if i < tries - 1: - time.sleep(1) - continue - else: - raise - break - soup = bs4.BeautifulSoup(search.text, features="lxml") comicTitle = soup.find("meta", property="og:title")["content"] comicURL = soup.find("meta", property="og:image")["content"] -- cgit v1.2.3