from urllib.request import urlopen Consume = Callable[[Future], None] def load_url(url: str) -> bytes: with urlopen(url) as u: return u.read() def ...
確定! 回上一頁