team-10/venv/Lib/site-packages/mdurl/_url.py

15 lines
284 B
Python
Raw Normal View History

2025-08-02 02:00:33 +02:00
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