mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-08 04:54:48 +08:00
37 lines
1.3 KiB
Python
37 lines
1.3 KiB
Python
from typing import Any, Callable, Dict, List, Optional, Protocol, Sequence, Type, TypeVar, Union
|
|
|
|
from django.db.models.base import Model
|
|
from django.http.response import HttpResponse as HttpResponse, HttpResponseRedirect as HttpResponseRedirect
|
|
|
|
from django.db.models import Manager, QuerySet
|
|
from django.http import HttpRequest
|
|
|
|
def render_to_response(
|
|
template_name: Union[str, Sequence[str]],
|
|
context: Optional[Dict[str, Any]] = ...,
|
|
content_type: Optional[str] = ...,
|
|
status: Optional[int] = ...,
|
|
using: Optional[str] = ...,
|
|
) -> HttpResponse: ...
|
|
def render(
|
|
request: HttpRequest,
|
|
template_name: Union[str, Sequence[str]],
|
|
context: Optional[Dict[str, Any]] = ...,
|
|
content_type: Optional[str] = ...,
|
|
status: Optional[int] = ...,
|
|
using: Optional[str] = ...,
|
|
) -> HttpResponse: ...
|
|
|
|
class SupportsGetAbsoluteUrl(Protocol):
|
|
pass
|
|
|
|
def redirect(
|
|
to: Union[Callable, str, SupportsGetAbsoluteUrl], *args: Any, permanent: bool = ..., **kwargs: Any
|
|
) -> HttpResponseRedirect: ...
|
|
|
|
_T = TypeVar("_T", bound=Model)
|
|
|
|
def get_object_or_404(klass: Union[Type[_T], Manager[_T], QuerySet[_T]], *args: Any, **kwargs: Any) -> _T: ...
|
|
def get_list_or_404(klass: Union[Type[_T], Manager[_T], QuerySet[_T]], *args: Any, **kwargs: Any) -> List[_T]: ...
|
|
def resolve_url(to: Union[Callable, Model, str], *args: Any, **kwargs: Any) -> str: ...
|