This repository has been archived on 2025-02-24. You can view files and clone it, but cannot push or open issues or pull requests.
fireguide/.venv/lib/python3.12/site-packages/mdurl/_url.py

14 lines
284 B
Python

from __future__ import annotations
from typing import NamedTuple
class URL(NamedTuple):
protocol: str | None
slashes: bool
auth: str | None
port: str | None
hostname: str | None
hash: str | None # noqa: A003
search: str | None
pathname: str | None