mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-09 13:35:01 +08:00
31 lines
982 B
Python
31 lines
982 B
Python
from typing import Any, Dict, Optional, Type, Union
|
|
from uuid import UUID
|
|
|
|
class IntConverter:
|
|
regex: str = ...
|
|
def to_python(self, value: str) -> int: ...
|
|
def to_url(self, value: Union[int, str]) -> str: ...
|
|
|
|
class StringConverter:
|
|
regex: str = ...
|
|
def to_python(self, value: str) -> str: ...
|
|
def to_url(self, value: Union[int, str, UUID]) -> Union[int, str, UUID]: ...
|
|
|
|
class UUIDConverter:
|
|
regex: str = ...
|
|
def to_python(self, value: str) -> UUID: ...
|
|
def to_url(self, value: Union[str, UUID]) -> str: ...
|
|
|
|
class SlugConverter(StringConverter):
|
|
regex: str = ...
|
|
|
|
class PathConverter(StringConverter):
|
|
regex: str = ...
|
|
|
|
DEFAULT_CONVERTERS: Any
|
|
REGISTERED_CONVERTERS: Any
|
|
|
|
def register_converter(converter: Type[Any], type_name: str) -> None: ...
|
|
def get_converters() -> Dict[str, Union[IntConverter, StringConverter, UUIDConverter]]: ...
|
|
def get_converter(raw_converter: str) -> Union[IntConverter, StringConverter, UUIDConverter]: ...
|