Files
Buffteks-Website/streamlit-venv/lib/python3.10/site-packages/mdurl/_url.py
2025-01-10 21:40:35 +00:00

15 lines
284 B
Python
Executable File

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