web: remove the vestigial bits of httpx
- ID
69356a7- date
2026-03-27 15:26:15+00:00- author
Alex Chan <alex@alexwlchan.net>- parent
75c68a8- message
web: remove the vestigial bits of httpx- changed files
1 file, 4 deletions
Changed files
web/scrape_really_useful_boxes.py (3972) → web/scrape_really_useful_boxes.py (3933)
diff --git a/web/scrape_really_useful_boxes.py b/web/scrape_really_useful_boxes.py
index bb2f50e..b78c35e 100755
--- a/web/scrape_really_useful_boxes.py
+++ b/web/scrape_really_useful_boxes.py
@@ -20,14 +20,10 @@ import urllib.request
import bs4
import certifi
-import httpx
from sqlite_utils import Database
import tqdm
-client = httpx.Client()
-
-
def get_soup(url: str) -> bs4.BeautifulSoup:
"""
Fetch the contents of a URL, parse it as HTML, and return the parsed soup.