Skip to content

Instantly share code, notes, and snippets.

View kristofgilicze's full-sized avatar

Kristof Gilicze kristofgilicze

View GitHub Profile
@adilkhash
adilkhash / exception_groups.py
Created October 25, 2022 08:54
Python 3.11 Exception Groups
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