This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from urllib.request import urlopen | |
from urllib.error import HTTPError | |
from concurrent.futures import ThreadPoolExecutor, as_completed | |
class HttpError(Exception): | |
def __init__(self, url: str, code: int) -> None: | |
self.url = url | |
self.code = code |