content stringlengths 1 103k ⌀ | path stringlengths 8 216 | filename stringlengths 2 179 | language stringclasses 15
values | size_bytes int64 2 189k | quality_score float64 0.5 0.95 | complexity float64 0 1 | documentation_ratio float64 0 1 | repository stringclasses 5
values | stars int64 0 1k | created_date stringdate 2023-07-10 19:21:08 2025-07-09 19:11:45 | license stringclasses 4
values | is_test bool 2
classes | file_hash stringlengths 32 32 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
from typing import Any\n\nfrom django.utils.functional import LazyObject\n\n# explicit dependency on standard settings to make it loaded\nfrom . import global_settings\n\nENVIRONMENT_VARIABLE: str = ...\nDEFAULT_CONTENT_TYPE_DEPRECATED_MSG: str = ...\nFILE_CHARSET_DEPRECATED_MSG: str = ...\n\n# required for plugin to b... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\conf\__init__.pyi | __init__.pyi | Other | 899 | 0.95 | 0.37931 | 0.1 | node-utils | 646 | 2024-01-01T15:39:48.108490 | MIT | false | 9bb53cae9856838c49662b683e1f42b2 |
from typing import Dict, Any\n\nLANG_INFO: Dict[str, Any] = ...\n | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\conf\locale\__init__.pyi | __init__.pyi | Other | 62 | 0.65 | 0 | 0 | python-kit | 740 | 2024-10-08T14:11:05.220569 | GPL-3.0 | false | 47d0c4195b9da638b36c254851d9b5cb |
from typing import Any, List, Tuple, Callable\n\nfrom django.urls.resolvers import URLPattern\n\ndef i18n_patterns(*urls: Any, prefix_default_language: bool = ...) -> List[List[URLPattern]]: ...\ndef is_language_prefix_patterns_used(urlconf: str) -> Tuple[bool, bool]: ...\n\nurlpatterns: List[Callable]\n | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\conf\urls\i18n.pyi | i18n.pyi | Other | 297 | 0.85 | 0.25 | 0 | vue-tools | 511 | 2024-10-01T01:08:33.311562 | GPL-3.0 | false | 9435265e5136f864d22896afd09f4541 |
from typing import Any, Callable, List\n\nfrom django.urls.resolvers import URLPattern\n\ndef static(prefix: str, view: Callable = ..., **kwargs: Any) -> List[URLPattern]: ...\n | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\conf\urls\static.pyi | static.pyi | Other | 172 | 0.85 | 0.2 | 0 | node-utils | 457 | 2023-12-23T06:44:34.799116 | GPL-3.0 | false | 37d70fbabaf92ba42bc5d619da618593 |
# Stubs for django.conf.urls (Python 3.5)\nfrom typing import Any, Callable, Dict, List, Optional, overload, Tuple, Union\n\nfrom django.http.response import HttpResponse, HttpResponseBase\n\nfrom django.urls import URLResolver, URLPattern\n\nhandler400: Union[str, Callable[..., HttpResponse]] = ...\nhandler403: Union[... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\conf\urls\__init__.pyi | __init__.pyi | Other | 1,033 | 0.95 | 0.2 | 0.05 | python-kit | 923 | 2024-03-13T13:32:53.265623 | BSD-3-Clause | false | 42403efaa7b5b62cdafe13e7c8f8fb34 |
from typing import Optional\n\nfrom django.contrib.admin.options import ModelAdmin\nfrom django.core.handlers.wsgi import WSGIRequest\nfrom django.db.models.query import QuerySet\nfrom django.template.response import TemplateResponse\n\ndef delete_selected(modeladmin: ModelAdmin, request: WSGIRequest, queryset: QuerySe... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\admin\actions.pyi | actions.pyi | Other | 351 | 0.85 | 0.125 | 0 | python-kit | 513 | 2024-07-24T22:16:42.172056 | MIT | false | f748e9ee6a9e4c3ef8722c794db8c3c4 |
from django.apps import AppConfig\n\nclass SimpleAdminConfig(AppConfig):\n default_site: str = ...\n\nclass AdminConfig(SimpleAdminConfig): ...\n | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\admin\apps.pyi | apps.pyi | Other | 142 | 0.85 | 0.333333 | 0 | awesome-app | 5 | 2025-01-27T06:26:22.005243 | BSD-3-Clause | false | fcbe1990f80220be7b59326782056fce |
from typing import Any, List, Union, Iterable, Optional\n\nfrom django.contrib.admin.options import BaseModelAdmin\nfrom django.core.checks.messages import Error\n\nfrom django.apps.config import AppConfig\n\n_CheckError = Union[str, Error]\n\ndef check_admin_app(app_configs: Optional[Iterable[AppConfig]], **kwargs: An... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\admin\checks.pyi | checks.pyi | Other | 849 | 0.85 | 0.428571 | 0 | react-lib | 806 | 2023-10-31T16:56:24.573206 | GPL-3.0 | false | ba67fe59ec8d5c69dbca52e40b5d5022 |
from typing import Any, Callable, Optional, Type\n\nfrom django.db.models.base import Model\n\ndef register(*models: Type[Model], site: Optional[Any] = ...) -> Callable: ...\n | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\admin\decorators.pyi | decorators.pyi | Other | 170 | 0.85 | 0.2 | 0 | react-lib | 795 | 2025-06-10T06:49:38.289638 | Apache-2.0 | false | ddc5d504ba936a8343a543b36ba823fc |
from typing import Any, Callable, Dict, List, Optional, Tuple, Type, Iterator\n\nfrom django.contrib.admin.options import ModelAdmin\nfrom django.core.handlers.wsgi import WSGIRequest\nfrom django.db.models.base import Model\nfrom django.db.models.fields.related import RelatedField\nfrom django.db.models.query import Q... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\admin\filters.pyi | filters.pyi | Other | 3,487 | 0.85 | 0.2 | 0 | vue-tools | 860 | 2024-06-26T05:31:49.029414 | Apache-2.0 | false | cc5dd6e41ed00afe3a62a9a7e3df1ecc |
from django.contrib.auth.forms import AuthenticationForm, PasswordChangeForm\n\nclass AdminAuthenticationForm(AuthenticationForm):\n required_css_class: str = ...\n\nclass AdminPasswordChangeForm(PasswordChangeForm):\n required_css_class: str = ...\n | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\admin\forms.pyi | forms.pyi | Other | 249 | 0.85 | 0.285714 | 0 | python-kit | 829 | 2025-05-17T23:59:20.778766 | BSD-3-Clause | false | 5f8cfe7dd6b9b3a3d68510ea62c39401 |
from typing import Any, Callable, Dict, Iterator, List, Optional, Tuple, Union, Iterable\n\nfrom django.forms.boundfield import BoundField\nfrom django.forms.forms import BaseForm\nfrom django.forms.utils import ErrorDict\nfrom django.forms.widgets import Media, Widget\nfrom django.utils.safestring import SafeText\n\nf... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\admin\helpers.pyi | helpers.pyi | Other | 4,790 | 0.85 | 0.270968 | 0 | awesome-app | 755 | 2024-01-24T20:28:08.705364 | MIT | false | e3b088e88744ad9e29d6f658ec411742 |
from typing import Any, Optional, Union\nfrom uuid import UUID\n\nfrom django.contrib.contenttypes.models import ContentType\nfrom django.db.models.base import Model\n\nfrom django.db import models\n\nADDITION: int\nCHANGE: int\nDELETION: int\nACTION_FLAG_CHOICES: Any\n\nclass LogEntryManager(models.Manager["LogEntry"]... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\admin\models.pyi | models.pyi | Other | 1,220 | 0.85 | 0.230769 | 0 | react-lib | 738 | 2025-06-19T22:39:02.005377 | GPL-3.0 | false | 156ce7d3358e2c8e9f76ddf54cd9e1ae |
from collections import OrderedDict\nfrom typing import Any, Callable, Dict, Iterator, List, Optional, Sequence, Set, Tuple, Type, Union, Mapping, TypeVar\n\nfrom django.forms.forms import BaseForm\nfrom django.forms.formsets import BaseFormSet\nfrom typing_extensions import Literal, TypedDict\n\nfrom django.contrib.ad... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\admin\options.pyi | options.pyi | Other | 13,828 | 0.95 | 0.352727 | 0.011538 | awesome-app | 362 | 2023-09-21T17:52:53.404221 | GPL-3.0 | false | 695cff78b0f60c89aea6c071e7c8be64 |
from typing import Any, Callable, Dict, Iterable, List, Optional, Tuple, Type, Union\n\nfrom django.contrib.admin.options import ModelAdmin\nfrom django.core.handlers.wsgi import WSGIRequest\nfrom django.db.models.base import Model\nfrom django.http.response import HttpResponse\nfrom django.template.response import Tem... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\admin\sites.pyi | sites.pyi | Other | 3,288 | 0.85 | 0.386667 | 0.014706 | python-kit | 463 | 2025-03-21T01:02:33.686643 | MIT | false | ac47831b0dc1500705aee2b7941b8459 |
from typing import Any, Callable\n\nfrom django.contrib.staticfiles.testing import StaticLiveServerTestCase\nfrom django.test.selenium import SeleniumTestCase\nfrom django.utils.deprecation import MiddlewareMixin\n\nclass CSPMiddleware(MiddlewareMixin): ...\n\nclass AdminSeleniumTestCase(SeleniumTestCase, StaticLiveSer... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\admin\tests.pyi | tests.pyi | Other | 1,417 | 0.85 | 0.695652 | 0 | awesome-app | 693 | 2024-01-30T12:25:16.890722 | BSD-3-Clause | true | c16b62bb53364ac7229018fba2d4fc73 |
import collections\nfrom datetime import datetime\nfrom typing import Any, Callable, Dict, List, Optional, Sequence, Set, Tuple, Type, Union\nfrom uuid import UUID\n\nfrom django.contrib.admin.options import BaseModelAdmin\nfrom django.contrib.admin.sites import AdminSite\nfrom django.contrib.auth.forms import AdminPas... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\admin\utils.pyi | utils.pyi | Other | 3,107 | 0.85 | 0.367647 | 0 | vue-tools | 2 | 2024-02-28T21:54:59.392091 | MIT | false | d8ad791e37d1d58bcfa60e0c81e186f0 |
from typing import Any, Dict, Optional, Tuple, Union\nfrom uuid import UUID\n\nfrom django.contrib.admin.sites import AdminSite\nfrom django.db.models.fields.reverse_related import ForeignObjectRel, ManyToOneRel\nfrom django.forms.models import ModelChoiceIterator\nfrom django.forms.widgets import Media\n\nfrom django ... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\admin\widgets.pyi | widgets.pyi | Other | 3,375 | 0.85 | 0.343137 | 0 | vue-tools | 526 | 2025-04-14T00:16:54.789377 | BSD-3-Clause | false | 26545ccc269078e0a62de79263e3ef1c |
from .decorators import register as register\nfrom .filters import (\n AllValuesFieldListFilter as AllValuesFieldListFilter,\n BooleanFieldListFilter as BooleanFieldListFilter,\n ChoicesFieldListFilter as ChoicesFieldListFilter,\n DateFieldListFilter as DateFieldListFilter,\n FieldListFilter as FieldList... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\admin\__init__.pyi | __init__.pyi | Other | 881 | 0.85 | 0.041667 | 0 | awesome-app | 983 | 2024-05-10T01:24:20.045902 | Apache-2.0 | false | dbde139150422c643afe361bb33f4e75 |
from typing import Any, Dict, Iterator, List, Optional, Union, Iterable\n\nfrom django.contrib.admin.filters import FieldListFilter\nfrom django.contrib.admin.templatetags.base import InclusionAdminNode\nfrom django.contrib.admin.views.main import ChangeList\nfrom django.db.models.base import Model\nfrom django.forms.b... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\admin\templatetags\admin_list.pyi | admin_list.pyi | Other | 2,028 | 0.85 | 0.452381 | 0 | react-lib | 733 | 2023-10-08T09:43:12.599052 | GPL-3.0 | false | fa54f942897c0a625ad323675a932a49 |
from typing import Any\n\nfrom django.contrib.admin.helpers import InlineAdminForm\nfrom django.template.base import Parser, Token\nfrom django.template.context import Context, RequestContext\n\nfrom .base import InclusionAdminNode\n\nregister: Any\n\ndef prepopulated_fields_js(context: RequestContext) -> RequestContex... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\admin\templatetags\admin_modify.pyi | admin_modify.pyi | Other | 690 | 0.85 | 0.375 | 0 | python-kit | 224 | 2025-01-15T11:48:36.595439 | GPL-3.0 | false | 2dde983e32b7a8330cf091a1f6403d07 |
from typing import Any\n\nregister: Any\n\ndef static(path: str) -> str: ...\n | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\admin\templatetags\admin_static.pyi | admin_static.pyi | Other | 73 | 0.65 | 0.2 | 0 | node-utils | 203 | 2024-05-28T13:54:18.852187 | MIT | false | 30ba1b32ffed07d7b0bba1074d08a324 |
from typing import Any, Dict, Optional, Union\nfrom uuid import UUID\n\nfrom django.db.models.options import Options\nfrom django.template.context import RequestContext\nfrom django.utils.safestring import SafeText\n\nregister: Any\n\ndef admin_urlname(value: Options, arg: SafeText) -> str: ...\ndef admin_urlquote(valu... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\admin\templatetags\admin_urls.pyi | admin_urls.pyi | Other | 547 | 0.85 | 0.176471 | 0 | vue-tools | 471 | 2023-12-30T20:20:33.882907 | MIT | false | 79e74e9b466d26a8735fad4fb948b523 |
from typing import Any, Callable, Dict, List\n\nfrom django.template.base import Parser, Token\nfrom django.template.context import Context\nfrom django.template.library import InclusionNode\nfrom django.utils.safestring import SafeText\n\nclass InclusionAdminNode(InclusionNode):\n args: List[Any]\n func: Callabl... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\admin\templatetags\base.pyi | base.pyi | Other | 592 | 0.85 | 0.176471 | 0 | awesome-app | 727 | 2025-03-02T03:57:40.061321 | BSD-3-Clause | false | f2a79f848d34b4f35ad72b186c277612 |
from typing import Any, Optional\n\nfrom django import template\nfrom django.template.base import Parser, Token\nfrom django.template.context import Context\n\nregister: Any\n\nclass AdminLogNode(template.Node):\n limit: str\n user: str\n varname: str\n def __init__(self, limit: str, varname: str, user: Opt... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\admin\templatetags\log.pyi | log.pyi | Other | 454 | 0.85 | 0.25 | 0 | vue-tools | 18 | 2023-09-16T17:58:46.693250 | MIT | false | 963ea1b105eaf964634b4a28f09f5f30 |
from typing import Any\n\nfrom django.contrib.admin.options import ModelAdmin\nfrom django.core.handlers.wsgi import WSGIRequest\nfrom django.views.generic.list import BaseListView\n\nclass AutocompleteJsonView(BaseListView):\n model_admin: ModelAdmin = ...\n term: Any = ...\n def has_perm(self, request: WSGIR... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\admin\views\autocomplete.pyi | autocomplete.pyi | Other | 349 | 0.85 | 0.2 | 0 | react-lib | 134 | 2025-01-08T17:32:56.513072 | BSD-3-Clause | false | 031ea8122b840173075f353d69677cdf |
from typing import Callable, TypeVar, overload\n\n_C = TypeVar("_C", bound=Callable)\n@overload\ndef staff_member_required(view_func: _C = ..., redirect_field_name: str = ..., login_url: str = ...) -> _C: ...\n@overload\ndef staff_member_required(view_func: None = ..., redirect_field_name: str = ..., login_url: str = .... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\admin\views\decorators.pyi | decorators.pyi | Other | 335 | 0.85 | 0.285714 | 0 | vue-tools | 650 | 2025-02-11T13:02:35.466475 | GPL-3.0 | false | 7af9951e7641c3f4455c471cf3128cd9 |
from collections import OrderedDict\nfrom typing import Any, Callable, Dict, List, Optional, Tuple, Type, Union\n\nfrom django.contrib.admin.filters import ListFilter, SimpleListFilter\nfrom django.contrib.admin.options import ( # noqa: F401\n ModelAdmin,\n IS_POPUP_VAR as IS_POPUP_VAR,\n TO_FIELD_VAR as TO_F... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\admin\views\main.pyi | main.pyi | Other | 3,390 | 0.95 | 0.146067 | 0 | react-lib | 854 | 2024-09-11T08:19:19.591556 | BSD-3-Clause | false | 91125a2dc12648a94006ffa6c58ddfa2 |
from typing import Any, Callable, Dict, Optional, Tuple\n\nfrom django.core.handlers.wsgi import WSGIRequest\nfrom django.http.response import HttpResponse\nfrom django.utils.deprecation import MiddlewareMixin\n\nclass XViewMiddleware(MiddlewareMixin):\n def process_view(\n self, request: WSGIRequest, view_fu... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\admindocs\middleware.pyi | middleware.pyi | Other | 409 | 0.85 | 0.2 | 0 | vue-tools | 668 | 2024-04-01T12:37:11.611798 | BSD-3-Clause | false | dc99cbcec648750caacdecb8e686e131 |
from typing import Any, List\n\nurlpatterns: List[Any] = ...\n | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\admindocs\urls.pyi | urls.pyi | Other | 59 | 0.65 | 0 | 0 | react-lib | 391 | 2023-10-14T13:43:54.849219 | GPL-3.0 | false | 72baef07657af40bbb9421362b0c67cd |
from typing import Any, Callable, Optional\n\ndocutils_is_available: bool\n\ndef get_view_name(view_func: Callable) -> str: ...\ndef trim_docstring(docstring: Any): ...\ndef parse_docstring(docstring: Any): ...\ndef parse_rst(text: Any, default_reference_context: Any, thing_being_parsed: Optional[Any] = ...): ...\n\nRO... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\admindocs\utils.pyi | utils.pyi | Other | 725 | 0.85 | 0.296296 | 0 | awesome-app | 559 | 2023-10-20T10:46:50.837716 | GPL-3.0 | false | 7c450fff266a95b8242797d6c02f235c |
from typing import Any, Optional, Union\n\nfrom django.db.models.fields import Field\nfrom django.views.generic import TemplateView\n\nMODEL_METHODS_EXCLUDE: Any\n\nclass BaseAdminDocsView(TemplateView): ...\nclass BookmarkletsView(BaseAdminDocsView): ...\nclass TemplateTagIndexView(BaseAdminDocsView): ...\nclass Templ... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\admindocs\views.pyi | views.pyi | Other | 852 | 0.85 | 0.619048 | 0 | python-kit | 219 | 2023-10-10T15:33:36.334424 | Apache-2.0 | false | 697ad021370ac52197b520bd74ea0ba4 |
from typing import Any\n\nfrom django.core.handlers.wsgi import WSGIRequest\nfrom django.http.response import HttpResponse\n\nfrom django.contrib import admin\n\ncsrf_protect_m: Any\nsensitive_post_parameters_m: Any\n\nclass GroupAdmin(admin.ModelAdmin): ...\n\nclass UserAdmin(admin.ModelAdmin):\n change_user_passwo... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\auth\admin.pyi | admin.pyi | Other | 527 | 0.85 | 0.166667 | 0 | node-utils | 687 | 2024-12-03T02:12:53.262551 | Apache-2.0 | false | f0959ade16886843a4a378dc2cbe250f |
from django.apps import AppConfig\n\nclass AuthConfig(AppConfig): ...\n | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\auth\apps.pyi | apps.pyi | Other | 68 | 0.65 | 0.333333 | 0 | node-utils | 165 | 2023-08-10T12:16:32.991628 | GPL-3.0 | false | a86490ae88c34d50488f4d60272314bf |
from typing import Any, Optional, Set, Union\n\nfrom django.contrib.auth.base_user import AbstractBaseUser\nfrom django.contrib.auth.models import AnonymousUser, User, Permission\n\nfrom django.db.models.base import Model\n\n_AnyUser = Union[Model, AnonymousUser]\n\nUserModel: Any\n\nclass BaseBackend:\n def authent... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\auth\backends.pyi | backends.pyi | Other | 1,605 | 0.85 | 0.4 | 0 | vue-tools | 940 | 2023-08-15T11:22:10.525476 | Apache-2.0 | false | 740d6a266e7083fc018db31c9c797bdc |
import sys\nfrom typing import Any, Optional, Tuple, List, overload, TypeVar\n\nfrom django.db.models.base import Model\n\nfrom django.db import models\n\nif sys.version_info < (3, 8):\n from typing_extensions import Literal\nelse:\n from typing import Literal\n\n_T = TypeVar("_T", bound=Model)\n\nclass BaseUserM... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\auth\base_user.pyi | base_user.pyi | Other | 1,493 | 0.85 | 0.409091 | 0 | vue-tools | 411 | 2023-12-16T14:10:09.909933 | BSD-3-Clause | false | eac5009e1c636cc9e2af4659a6227df2 |
from typing import Any, List, Iterable, Optional\n\nfrom django.core.checks.messages import CheckMessage\n\nfrom django.apps.config import AppConfig\n\ndef check_user_model(app_configs: Optional[Iterable[AppConfig]] = ..., **kwargs: Any) -> List[CheckMessage]: ...\ndef check_models_permissions(app_configs: Optional[Ite... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\auth\checks.pyi | checks.pyi | Other | 371 | 0.85 | 0.25 | 0 | node-utils | 663 | 2023-10-09T03:56:09.517397 | BSD-3-Clause | false | 56f572f3219a9b0d1f1ab790db3fcb37 |
from typing import Any, Dict\n\nfrom django.http.request import HttpRequest\n\nclass PermLookupDict:\n app_label: str\n user: Any\n def __init__(self, user: Any, app_label: str) -> None: ...\n def __getitem__(self, perm_name: str) -> bool: ...\n def __iter__(self) -> Any: ...\n def __bool__(self) -> b... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\auth\context_processors.pyi | context_processors.pyi | Other | 617 | 0.85 | 0.55 | 0 | vue-tools | 105 | 2023-07-30T10:43:40.292663 | Apache-2.0 | false | 328740a1bdd66ee913d06aa7900607be |
from typing import Callable, List, Optional, Set, Union, TypeVar, overload\n\nfrom django.contrib.auth import REDIRECT_FIELD_NAME as REDIRECT_FIELD_NAME # noqa: F401\nfrom django.http.response import HttpResponseBase\n\nfrom django.contrib.auth.models import AbstractUser\n\n_VIEW = TypeVar("_VIEW", bound=Callable[...,... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\auth\decorators.pyi | decorators.pyi | Other | 982 | 0.95 | 0.238095 | 0.0625 | python-kit | 383 | 2023-11-20T06:44:25.890308 | GPL-3.0 | false | 77c1b8b82282e6bea5e9c5183b18032d |
from typing import Any, Dict, Iterator, Optional\n\nfrom django.contrib.auth.base_user import AbstractBaseUser\nfrom django.contrib.auth.models import AbstractUser, User\nfrom django.contrib.auth.tokens import PasswordResetTokenGenerator\nfrom django.core.exceptions import ValidationError\nfrom django.core.handlers.wsg... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\auth\forms.pyi | forms.pyi | Other | 3,149 | 0.85 | 0.318681 | 0 | react-lib | 111 | 2024-11-18T03:22:22.072016 | BSD-3-Clause | false | b9196879e3a9f8eaa6fb8c1725425109 |
from typing import Any, Callable, Dict, List, Optional\n\nUNUSABLE_PASSWORD_PREFIX: str\nUNUSABLE_PASSWORD_SUFFIX_LENGTH: int\n\ndef is_password_usable(encoded: Optional[str]) -> bool: ...\ndef check_password(\n password: Optional[str], encoded: str, setter: Optional[Callable] = ..., preferred: str = ...\n) -> bool:... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\auth\hashers.pyi | hashers.pyi | Other | 1,969 | 0.85 | 0.6 | 0 | react-lib | 307 | 2023-07-11T11:30:32.036637 | MIT | false | 9161628c4bffc96e27e793e91c88e02f |
from typing import Union\n\nfrom django.contrib.auth.models import AnonymousUser, User\nfrom django.core.handlers.wsgi import WSGIRequest\nfrom django.http.request import HttpRequest\nfrom django.utils.deprecation import MiddlewareMixin\n\ndef get_user(request: WSGIRequest) -> Union[AnonymousUser, User]: ...\n\nclass A... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\auth\middleware.pyi | middleware.pyi | Other | 774 | 0.85 | 0.35 | 0 | python-kit | 24 | 2024-06-14T18:28:46.623942 | BSD-3-Clause | false | b586ee419b774644519094a82c58d0eb |
from typing import Any, Callable, List, Optional\n\nfrom django import http\nfrom django.http.response import HttpResponse, HttpResponseRedirect\n\nclass AccessMixin:\n login_url: Any = ...\n permission_denied_message: str = ...\n raise_exception: bool = ...\n redirect_field_name: Any = ...\n def get_log... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\auth\mixins.pyi | mixins.pyi | Other | 1,150 | 0.85 | 0.535714 | 0 | python-kit | 19 | 2024-09-21T04:01:36.319448 | BSD-3-Clause | false | 510805f924fa1c15260a90743f010d48 |
import sys\nfrom typing import Any, Collection, Optional, Set, Tuple, Type, TypeVar, Union\n\nfrom django.contrib.auth.backends import ModelBackend\nfrom django.contrib.auth.base_user import AbstractBaseUser as AbstractBaseUser, BaseUserManager as BaseUserManager\nfrom django.contrib.auth.validators import UnicodeUsern... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\auth\models.pyi | models.pyi | Other | 4,641 | 0.95 | 0.358974 | 0 | awesome-app | 232 | 2024-03-02T08:43:06.550167 | BSD-3-Clause | false | a76e9f6b3daef2fe0f0520aa3a674589 |
from pathlib import Path, PosixPath\nfrom typing import Any, List, Mapping, Optional, Protocol, Sequence, Set, Union\n\nfrom django.db.models.base import Model\n\n_UserModel = Model\n\nclass PasswordValidator(Protocol):\n def password_changed(self, password: str, user: Optional[_UserModel] = ...): ...\n\ndef get_def... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\auth\password_validation.pyi | password_validation.pyi | Other | 2,052 | 0.85 | 0.478261 | 0 | vue-tools | 992 | 2025-04-06T12:21:25.412376 | Apache-2.0 | false | 05b17ae05269f223ed364319748052e1 |
from django.dispatch.dispatcher import Signal\n\nuser_logged_in: Signal\nuser_login_failed: Signal\nuser_logged_out: Signal\n | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\auth\signals.pyi | signals.pyi | Other | 120 | 0.85 | 0 | 0 | vue-tools | 583 | 2023-10-20T09:31:53.329226 | BSD-3-Clause | false | 99606e3f79b02ab220856978ba01c647 |
from typing import Any, Optional\n\nfrom django.contrib.auth.base_user import AbstractBaseUser\n\nclass PasswordResetTokenGenerator:\n key_salt: str = ...\n secret: Any = ...\n def make_token(self, user: AbstractBaseUser) -> str: ...\n def check_token(self, user: Optional[AbstractBaseUser], token: Optional[... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\auth\tokens.pyi | tokens.pyi | Other | 361 | 0.85 | 0.272727 | 0 | react-lib | 732 | 2023-07-14T03:17:18.646931 | GPL-3.0 | false | d0204a65f6b37bcd4ef9a2f2665fa756 |
from typing import Any, List\n\nurlpatterns: List[Any] = ...\n | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\auth\urls.pyi | urls.pyi | Other | 59 | 0.65 | 0 | 0 | vue-tools | 557 | 2024-10-08T07:41:34.277462 | BSD-3-Clause | false | 72baef07657af40bbb9421362b0c67cd |
from django.core import validators\n\nclass ASCIIUsernameValidator(validators.RegexValidator): ...\nclass UnicodeUsernameValidator(validators.RegexValidator): ...\n | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\auth\validators.pyi | validators.pyi | Other | 160 | 0.85 | 0.5 | 0 | vue-tools | 624 | 2023-12-07T17:24:46.077874 | Apache-2.0 | false | ae7af9969b69d3602d705c4886888bea |
from typing import Any, Optional, Set\n\nfrom django.contrib.auth.base_user import AbstractBaseUser\nfrom django.core.handlers.wsgi import WSGIRequest\nfrom django.http.request import HttpRequest\nfrom django.http.response import HttpResponseRedirect\nfrom django.template.response import TemplateResponse\nfrom django.v... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\auth\views.pyi | views.pyi | Other | 2,478 | 0.85 | 0.25 | 0 | vue-tools | 824 | 2024-07-30T20:06:59.650082 | MIT | false | 5269dd6d4147c07b2d9e73cc985390a1 |
from typing import Any, List, Optional, Type, Union\n\nfrom django.contrib.auth.backends import ModelBackend\nfrom django.contrib.auth.base_user import AbstractBaseUser\nfrom django.contrib.auth.models import AbstractUser, AnonymousUser\nfrom django.core.handlers.wsgi import WSGIRequest\nfrom django.db.models.base impo... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\auth\__init__.pyi | __init__.pyi | Other | 1,316 | 0.85 | 0.264706 | 0 | python-kit | 152 | 2025-05-02T09:12:08.258293 | MIT | false | 131cb33ed3e7ad91bb35171a961d0294 |
from typing import Any, Dict\n\nUserModel: Any\n\ndef check_password(environ: Dict[Any, Any], username: str, password: str) -> Any: ...\ndef groups_for_user(environ: Dict[Any, Any], username: str) -> Any: ...\n | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\auth\handlers\modwsgi.pyi | modwsgi.pyi | Other | 204 | 0.85 | 0.333333 | 0 | node-utils | 913 | 2023-10-04T14:45:05.938792 | GPL-3.0 | false | fb1960a90c06feff3be6bfea5b2f9602 |
from typing import Any\n\nfrom django.apps.config import AppConfig\nfrom django.apps.registry import Apps\n\ndef create_permissions(\n app_config: AppConfig,\n verbosity: int = ...,\n interactive: bool = ...,\n using: str = ...,\n apps: Apps = ...,\n **kwargs: Any\n) -> None: ...\ndef get_system_usern... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\auth\management\__init__.pyi | __init__.pyi | Other | 384 | 0.85 | 0.2 | 0.076923 | python-kit | 406 | 2025-03-29T23:06:55.705558 | GPL-3.0 | false | 7e8a3bc66ec498f040495f1b44563807 |
from typing import Any\n\nfrom django.core.management.base import BaseCommand\n\nUserModel: Any\n\nclass Command(BaseCommand): ...\n | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\auth\management\commands\changepassword.pyi | changepassword.pyi | Other | 125 | 0.85 | 0.142857 | 0 | python-kit | 870 | 2025-01-12T08:59:07.004144 | Apache-2.0 | false | 95507481e0b989be5563a39fe0c8e073 |
import getpass as getpass # noqa: F401\nfrom typing import Any\n\nfrom django.core.management.base import BaseCommand\n\nclass NotRunningInTTYException(Exception): ...\n\nclass Command(BaseCommand):\n stdin: Any\n | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\auth\management\commands\createsuperuser.pyi | createsuperuser.pyi | Other | 208 | 0.95 | 0.222222 | 0 | node-utils | 837 | 2024-03-04T04:31:55.799000 | MIT | false | 55e6c937dca37dba66640febbe3568cb |
from typing import Any, List, Type\n\nfrom django.contrib.admin.options import InlineModelAdmin\nfrom django.db.models.base import Model\n\nclass GenericInlineModelAdminChecks:\n def _check_exclude_of_parent_model(self, obj: GenericInlineModelAdmin, parent_model: Type[Model]) -> List[Any]: ...\n def _check_relati... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\contenttypes\admin.pyi | admin.pyi | Other | 586 | 0.85 | 0.428571 | 0 | node-utils | 16 | 2024-02-12T05:50:21.714865 | GPL-3.0 | false | 73b0c7ad812b1625589ccaff5c3d9ab8 |
from django.apps import AppConfig\n\nclass ContentTypesConfig(AppConfig): ...\n | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\contenttypes\apps.pyi | apps.pyi | Other | 76 | 0.65 | 0.333333 | 0 | node-utils | 318 | 2024-02-04T16:46:35.588640 | Apache-2.0 | false | 1d090d89f7c7839010484afcbd4001c1 |
from typing import Any, List, Iterable, Optional\n\nfrom django.apps.config import AppConfig\n\ndef check_generic_foreign_keys(app_configs: Optional[Iterable[AppConfig]] = ..., **kwargs: Any) -> List[Any]: ...\ndef check_model_name_lengths(app_configs: Optional[Iterable[AppConfig]] = ..., **kwargs: Any) -> List[Any]: .... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\contenttypes\checks.pyi | checks.pyi | Other | 318 | 0.85 | 0.333333 | 0 | react-lib | 244 | 2025-04-20T08:32:31.566109 | GPL-3.0 | false | c1edbf7ef82e4563dd22100a5e19bfe2 |
from typing import Any, Callable, Dict, List, Optional, Tuple, Type, Union\n\nfrom django.contrib.contenttypes.models import ContentType\nfrom django.core.checks.messages import Error\nfrom django.db.models.base import Model\nfrom django.db.models.expressions import Combinable\nfrom django.db.models.fields.mixins impor... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\contenttypes\fields.pyi | fields.pyi | Other | 4,097 | 0.95 | 0.252632 | 0.034091 | vue-tools | 704 | 2024-03-11T08:26:15.017350 | Apache-2.0 | false | 29276175f29d85ed4beb00387e539941 |
from typing import Any, Optional\n\nfrom django.forms.models import BaseModelFormSet\n\nclass BaseGenericInlineFormSet(BaseModelFormSet):\n instance: Any = ...\n rel_name: Any = ...\n save_as_new: Any = ...\n def __init__(\n self,\n data: Optional[Any] = ...,\n files: Optional[Any] = ..... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\contenttypes\forms.pyi | forms.pyi | Other | 1,159 | 0.85 | 0.146341 | 0.026316 | vue-tools | 835 | 2024-08-19T03:35:38.068361 | MIT | false | 3836a40daa7975cd314c1fead156433c |
from typing import Any, Dict, Optional, Tuple, Type, Union\n\nfrom django.db import models\nfrom django.db.models.base import Model\nfrom django.db.models.query import QuerySet\n\nclass ContentTypeManager(models.Manager["ContentType"]):\n def get_by_natural_key(self, app_label: str, model: str) -> ContentType: ...\n... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\contenttypes\models.pyi | models.pyi | Other | 1,085 | 0.85 | 0.5 | 0 | react-lib | 674 | 2024-09-23T21:12:22.148410 | GPL-3.0 | false | 60af0a198f5204bbd6b2db9432b89cca |
from typing import Union\n\nfrom django.http.request import HttpRequest\nfrom django.http.response import HttpResponseRedirect\n\ndef shortcut(\n request: HttpRequest, content_type_id: Union[int, str], object_id: Union[int, str]\n) -> HttpResponseRedirect: ...\n | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\contenttypes\views.pyi | views.pyi | Other | 257 | 0.85 | 0.125 | 0 | vue-tools | 56 | 2023-11-29T06:13:13.226924 | Apache-2.0 | false | 432593753618057dbd3bb77daa936a23 |
from typing import Any, Dict, List, Optional, Tuple, Type\n\nfrom django.apps.config import AppConfig\nfrom django.apps.registry import Apps\nfrom django.contrib.contenttypes.models import ContentType\nfrom django.db import migrations\nfrom django.db.backends.sqlite3.schema import DatabaseSchemaEditor\nfrom django.db.m... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\contenttypes\management\__init__.pyi | __init__.pyi | Other | 1,350 | 0.85 | 0.212121 | 0.033333 | react-lib | 754 | 2025-02-11T07:51:42.748479 | Apache-2.0 | false | 2c6aa315a558998f991b4a97dc62a167 |
from typing import Any, Dict, List\n\nfrom django.db.models.deletion import Collector\n\nfrom django.core.management import BaseCommand\n\nclass Command(BaseCommand): ...\n\nclass NoFastDeleteCollector(Collector):\n data: Dict[str, Any]\n dependencies: Dict[Any, Any]\n fast_deletes: List[Any]\n field_update... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\contenttypes\management\commands\remove_stale_contenttypes.pyi | remove_stale_contenttypes.pyi | Other | 411 | 0.85 | 0.2 | 0 | react-lib | 198 | 2025-03-28T23:37:24.503365 | GPL-3.0 | false | 0ce9126772c371deb9b593108c8e2eb8 |
from typing import Any\n\nfrom django import forms\n\nclass FlatpageForm(forms.ModelForm):\n url: Any = ...\n def clean_url(self) -> str: ...\n | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\flatpages\forms.pyi | forms.pyi | Other | 142 | 0.85 | 0.285714 | 0 | vue-tools | 893 | 2024-02-16T17:25:06.036557 | Apache-2.0 | false | 01b02e9d76e993d26617f346cfb44804 |
from django.core.handlers.wsgi import WSGIRequest\nfrom django.http.response import HttpResponse\nfrom django.utils.deprecation import MiddlewareMixin\n\nclass FlatpageFallbackMiddleware(MiddlewareMixin):\n def process_response(self, request: WSGIRequest, response: HttpResponse) -> HttpResponse: ...\n | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\flatpages\middleware.pyi | middleware.pyi | Other | 299 | 0.85 | 0.333333 | 0 | node-utils | 509 | 2024-09-02T20:15:51.897389 | Apache-2.0 | false | 5071a10c933a87904ec6c2656215f7ed |
from django.contrib.sites.models import Site\n\nfrom django.db import models\n\nclass FlatPage(models.Model):\n url: models.CharField = ...\n title: models.CharField = ...\n content: models.TextField = ...\n enable_comments: models.BooleanField = ...\n template_name: models.CharField = ...\n registrat... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\flatpages\models.pyi | models.pyi | Other | 445 | 0.85 | 0.153846 | 0 | awesome-app | 63 | 2024-09-29T12:24:04.333363 | MIT | false | 44bd3ffd2c0a633791892d385fffadf3 |
from django.contrib.sitemaps import Sitemap\n\nclass FlatPageSitemap(Sitemap): ...\n | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\flatpages\sitemaps.pyi | sitemaps.pyi | Other | 81 | 0.65 | 0.333333 | 0 | vue-tools | 162 | 2025-06-12T21:45:39.101422 | BSD-3-Clause | false | dc7ba7c04e80da35e9e2abc9ae391f95 |
from typing import Any, List\n\nurlpatterns: List[Any] = ...\n | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\flatpages\urls.pyi | urls.pyi | Other | 59 | 0.65 | 0 | 0 | awesome-app | 443 | 2024-11-19T11:37:38.737344 | Apache-2.0 | false | 72baef07657af40bbb9421362b0c67cd |
from django.contrib.flatpages.models import FlatPage\nfrom django.core.handlers.wsgi import WSGIRequest\nfrom django.http.response import HttpResponse\n\nDEFAULT_TEMPLATE: str\n\ndef flatpage(request: WSGIRequest, url: str) -> HttpResponse: ...\ndef render_flatpage(request: WSGIRequest, f: FlatPage) -> HttpResponse: ..... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\flatpages\views.pyi | views.pyi | Other | 315 | 0.85 | 0.25 | 0 | awesome-app | 517 | 2023-10-02T17:30:57.544845 | BSD-3-Clause | false | e815a4bc1f3274c70b973526fd455d60 |
from typing import Any, Optional\n\nfrom django import template\nfrom django.template.base import Parser, Token\nfrom django.template.context import Context\n\nregister: Any\n\nclass FlatpageNode(template.Node):\n context_name: str = ...\n starts_with: None = ...\n user: None = ...\n def __init__(self, cont... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\flatpages\templatetags\flatpages.pyi | flatpages.pyi | Other | 518 | 0.85 | 0.25 | 0 | vue-tools | 978 | 2023-11-13T14:55:31.668783 | Apache-2.0 | false | 4a00654d4c7be68b9515e30a5704a6ac |
from typing import Any, Iterable, NamedTuple, Optional, TypeVar, Union, Tuple\n\nfrom django.db.models.fields import Field, _ErrorMessagesToOverride, _FieldChoices, _ValidatorCallable\n\n_Connection = Any\n\n# __set__ value type\n_ST = TypeVar("_ST")\n# __get__ return type\n_GT = TypeVar("_GT")\n\nclass SRIDCacheEntry(... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\gis\db\models\fields.pyi | fields.pyi | Other | 3,133 | 0.95 | 0.197802 | 0.024096 | node-utils | 438 | 2023-09-20T18:59:34.896873 | GPL-3.0 | false | 704435d3b2cb28b2f773b9f493dcb5ee |
from django.db.models import *\n\nfrom .fields import (\n GeometryField as GeometryField,\n LineStringField as LineStringField,\n MultiLineStringField as MultiLineStringField,\n MultiPointField as MultiPointField,\n MultiPolygonField as MultiPolygonField,\n PointField as PointField,\n PolygonField ... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\gis\db\models\__init__.pyi | __init__.pyi | Other | 418 | 0.85 | 0 | 0 | react-lib | 555 | 2024-03-05T13:57:54.414674 | MIT | false | 5adb1ad6dd46d6b4cdbffe0b5c070de6 |
from datetime import date, datetime as datetime\nfrom typing import Any, Optional, SupportsInt, Union\n\nregister: Any\n\ndef ordinal(value: Optional[Union[str, SupportsInt]]) -> Optional[str]: ...\ndef intcomma(value: Optional[Union[str, SupportsInt]], use_l10n: bool = ...) -> str: ...\n\nintword_converters: Any\n\nde... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\humanize\templatetags\humanize.pyi | humanize.pyi | Other | 619 | 0.85 | 0.428571 | 0 | awesome-app | 957 | 2025-07-01T10:02:28.805818 | BSD-3-Clause | false | 292d8cab4edd352e74c409a29794acee |
from typing import Any, List, Optional, Union\n\nfrom django.contrib.messages.storage.base import BaseStorage\nfrom django.http.request import HttpRequest\n\nclass MessageFailure(Exception): ...\n\ndef add_message(\n request: Optional[HttpRequest],\n level: int,\n message: str,\n extra_tags: str = ...,\n ... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\messages\api.pyi | api.pyi | Other | 1,169 | 0.85 | 0.384615 | 0 | node-utils | 223 | 2024-09-30T15:33:17.612140 | BSD-3-Clause | false | 149458d576752b802bd3055193c66372 |
from typing import Dict\n\nDEBUG: int = ...\nINFO: int = ...\nSUCCESS: int = ...\nWARNING: int = ...\nERROR: int = ...\n\nDEFAULT_TAGS: Dict[int, str] = ...\n\nDEFAULT_LEVELS: Dict[str, int] = ...\n | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\messages\constants.pyi | constants.pyi | Other | 187 | 0.85 | 0 | 0 | python-kit | 455 | 2024-09-30T13:41:52.781332 | MIT | false | 3f9210e970585cb3c3f638fce620b497 |
from typing import Any, Dict, List, Union\n\nfrom django.contrib.messages.storage.base import BaseStorage\nfrom django.http.request import HttpRequest\n\ndef messages(request: HttpRequest) -> Dict[str, Union[Dict[str, int], List[Any], BaseStorage]]: ...\n | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\messages\context_processors.pyi | context_processors.pyi | Other | 249 | 0.85 | 0.166667 | 0 | awesome-app | 778 | 2025-04-20T08:00:50.882382 | GPL-3.0 | false | cd8d1dcfe70321499868052317f31929 |
from django.http.request import HttpRequest\nfrom django.http.response import HttpResponse\nfrom django.utils.deprecation import MiddlewareMixin\n\nclass MessageMiddleware(MiddlewareMixin):\n def process_request(self, request: HttpRequest) -> None: ...\n def process_response(self, request: HttpRequest, response: ... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\messages\middleware.pyi | middleware.pyi | Other | 349 | 0.85 | 0.428571 | 0 | python-kit | 98 | 2023-09-21T20:55:59.533923 | Apache-2.0 | false | 4431fa0ccaf846b6ef37c17aad66f4ac |
from typing import Dict\n\ndef get_level_tags() -> Dict[int, str]: ...\n | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\messages\utils.pyi | utils.pyi | Other | 69 | 0.65 | 0.333333 | 0 | react-lib | 332 | 2025-03-23T12:17:47.703672 | BSD-3-Clause | false | 29d9de4df2363929823479be9f9fb82d |
from typing import Dict\n\nfrom django.forms.forms import BaseForm\nfrom django.http.response import HttpResponse\n\nclass SuccessMessageMixin:\n success_message: str = ...\n def form_valid(self, form: BaseForm) -> HttpResponse: ...\n def get_success_message(self, cleaned_data: Dict[str, str]) -> str: ...\n | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\messages\views.pyi | views.pyi | Other | 308 | 0.85 | 0.333333 | 0 | react-lib | 290 | 2025-03-03T01:22:06.892802 | Apache-2.0 | false | 6f556f4a7cd1cf6eb2c13cc85944449c |
from .api import (\n get_level as get_level,\n set_level as set_level,\n add_message as add_message,\n debug as debug,\n error as error,\n success as success,\n get_messages as get_messages,\n MessageFailure as MessageFailure,\n info as info,\n warning as warning,\n)\n\nfrom .constants imp... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\messages\__init__.pyi | __init__.pyi | Other | 524 | 0.85 | 0 | 0 | vue-tools | 795 | 2024-11-14T13:50:45.837518 | GPL-3.0 | false | d4242b738e2bce831efc34928edf7967 |
from typing import Any, List, Optional\n\nfrom django.http.request import HttpRequest\nfrom django.http.response import HttpResponseBase\n\nLEVEL_TAGS: Any\n\nclass Message:\n level: int = ...\n message: str = ...\n extra_tags: str = ...\n def __init__(self, level: int, message: str, extra_tags: Optional[st... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\messages\storage\base.pyi | base.pyi | Other | 907 | 0.85 | 0.392857 | 0 | awesome-app | 979 | 2024-12-24T16:06:19.551686 | BSD-3-Clause | false | d5b3e746b1c985e7b0085c0322eaac89 |
import json\nfrom typing import Any\n\nfrom django.contrib.messages.storage.base import BaseStorage\n\nclass MessageEncoder(json.JSONEncoder):\n allow_nan: bool\n check_circular: bool\n ensure_ascii: bool\n skipkeys: bool\n sort_keys: bool\n message_key: str = ...\n\nclass MessageDecoder(json.JSONDeco... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\messages\storage\cookie.pyi | cookie.pyi | Other | 487 | 0.85 | 0.2 | 0 | vue-tools | 648 | 2024-02-20T17:49:14.795989 | Apache-2.0 | false | 581fe71a8a81159995854c700fa241b9 |
from typing import Any\n\nfrom django.contrib.messages.storage.base import BaseStorage\n\nclass FallbackStorage(BaseStorage):\n storage_classes: Any = ...\n storages: Any = ...\n def __init__(self, *args: Any, **kwargs: Any) -> None: ...\n | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\messages\storage\fallback.pyi | fallback.pyi | Other | 240 | 0.85 | 0.25 | 0 | react-lib | 935 | 2023-08-08T06:26:44.908170 | GPL-3.0 | false | df114ed84c1bddecf5052943475bd9fa |
from typing import Any, List, Optional, Sequence, Union\n\nfrom django.contrib.messages.storage.base import BaseStorage\nfrom django.http.request import HttpRequest\n\nclass SessionStorage(BaseStorage):\n session_key: str = ...\n def __init__(self, request: HttpRequest, *args: Any, **kwargs: Any) -> None: ...\n ... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\messages\storage\session.pyi | session.pyi | Other | 482 | 0.85 | 0.4 | 0 | react-lib | 509 | 2024-02-24T12:27:27.230140 | MIT | false | 59dd2888dc77b4a1d9745e0dcfa945b0 |
from typing import Any, Optional\n\nfrom django.contrib.messages.storage.base import BaseStorage\nfrom django.http.request import HttpRequest\n\ndef default_storage(request: HttpRequest) -> BaseStorage: ...\n | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\messages\storage\__init__.pyi | __init__.pyi | Other | 202 | 0.85 | 0.166667 | 0 | vue-tools | 184 | 2024-07-05T17:39:21.338501 | MIT | false | 580f955fdc34358e647c0aaa0a8ff100 |
from typing import Optional, Sequence, Tuple, Union\n\nfrom django.db.models.constraints import BaseConstraint\nfrom django.db.models.expressions import Combinable\nfrom django.db.models.query_utils import Q\n\nclass ExclusionConstraint(BaseConstraint):\n expressions: Sequence[Tuple[Union[str, Combinable], str]]\n ... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\postgres\constraints.pyi | constraints.pyi | Other | 576 | 0.85 | 0.111111 | 0.0625 | awesome-app | 385 | 2024-12-08T21:42:12.547816 | GPL-3.0 | false | 41886804a24eccd2310e54e7cb38da45 |
from django.db.models import Func\n\nclass RandomUUID(Func): ...\nclass TransactionNow(Func): ...\n | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\postgres\functions.pyi | functions.pyi | Other | 95 | 0.65 | 0.5 | 0 | react-lib | 781 | 2025-05-11T01:41:17.857833 | MIT | false | 5efcc15adbfece2e1d73d0c4cf83fd94 |
from typing import Optional, Sequence\n\nfrom django.db.models.query_utils import Q\n\nfrom django.db.models import Index\n\nclass PostgresIndex(Index): ...\n\nclass BrinIndex(PostgresIndex):\n def __init__(\n self,\n *,\n autosummarize: Optional[bool] = ...,\n pages_per_range: Optional[i... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\postgres\indexes.pyi | indexes.pyi | Other | 2,272 | 0.85 | 0.158537 | 0.082192 | node-utils | 231 | 2024-12-30T11:23:39.595293 | MIT | false | 7e783519eee243f91acf1d87ad2f07fa |
from django.db.models.lookups import Exact\n\nfrom django.db.models import Lookup, Transform\nfrom .search import SearchVectorExact\n\nclass PostgresSimpleLookup(Lookup):\n operator: str\n\nclass DataContains(PostgresSimpleLookup): ...\nclass ContainedBy(PostgresSimpleLookup): ...\nclass Overlap(PostgresSimpleLookup... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\postgres\lookups.pyi | lookups.pyi | Other | 579 | 0.85 | 0.611111 | 0 | awesome-app | 972 | 2023-12-23T04:55:07.300319 | GPL-3.0 | false | 65c010d9953b31b94392403b639be994 |
from django.db.migrations.operations.base import Operation\n\nclass CreateExtension(Operation):\n reversible: bool = ...\n name: str = ...\n def __init__(self, name: str) -> None: ...\n\nclass BtreeGinExtension(CreateExtension):\n def __init__(self) -> None: ...\n\nclass BtreeGistExtension(CreateExtension):... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\postgres\operations.pyi | operations.pyi | Other | 735 | 0.85 | 0.592593 | 0 | python-kit | 640 | 2024-05-23T23:55:28.012082 | MIT | false | f7147f94724360ed50bff943c17b97d0 |
from typing import Any, Dict, Optional, TypeVar, Union\n\nfrom django.db.models.expressions import Combinable, CombinedExpression, Func, Value, _OutputField\nfrom django.db.models.lookups import Lookup\n\nfrom django.db.models import Field\n\n_Expression = Union[str, Combinable, "SearchQueryCombinable"]\n\nclass Search... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\postgres\search.pyi | search.pyi | Other | 2,195 | 0.95 | 0.380952 | 0.020408 | python-kit | 625 | 2023-10-07T15:23:08.258202 | Apache-2.0 | false | e540a50d6685eb2b1770bea0e4b68a20 |
from typing import Any, Tuple\n\ndef get_hstore_oids(connection_alias: str) -> Tuple[Any, ...]: ...\ndef get_citext_oids(connection_alias: str) -> Tuple[Any, ...]: ...\ndef register_type_handlers(connection: Any, **kwargs: Any) -> None: ...\n | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\postgres\signals.pyi | signals.pyi | Other | 237 | 0.85 | 0.6 | 0 | react-lib | 789 | 2024-10-16T00:09:37.256913 | GPL-3.0 | false | 610d1041e1ccd409ede9ad250154345f |
from typing import Any, Dict, Iterable, Mapping, Optional\n\nfrom django.core.validators import MaxLengthValidator, MaxValueValidator, MinLengthValidator, MinValueValidator\n\nclass ArrayMaxLengthValidator(MaxLengthValidator): ...\nclass ArrayMinLengthValidator(MinLengthValidator): ...\n\nclass KeysValidator:\n mess... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\postgres\validators.pyi | validators.pyi | Other | 653 | 0.85 | 0.411765 | 0 | python-kit | 939 | 2024-05-20T06:11:02.179651 | MIT | false | 03b33a5697ad9babecc2cbfb4ac51f0f |
from django.db.models.aggregates import Aggregate\n\nfrom .mixins import OrderableAggMixin\n\nclass ArrayAgg(OrderableAggMixin, Aggregate): ...\nclass BitAnd(Aggregate): ...\nclass BitOr(Aggregate): ...\nclass BoolAnd(Aggregate): ...\nclass BoolOr(Aggregate): ...\nclass JSONBAgg(Aggregate): ...\nclass StringAgg(Orderab... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\postgres\aggregates\general.pyi | general.pyi | Other | 338 | 0.85 | 0.636364 | 0 | awesome-app | 802 | 2024-06-23T12:08:40.425138 | MIT | false | bcf0e5ab439da7c8f1dd08e330373de1 |
class OrderableAggMixin: ...\n | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\postgres\aggregates\mixins.pyi | mixins.pyi | Other | 29 | 0.65 | 1 | 0 | python-kit | 493 | 2025-02-13T12:50:42.221556 | Apache-2.0 | false | 70d9a15e112c2029eccef57bb9e0154d |
from django.db.models.aggregates import Aggregate\n\nclass StatAggregate(Aggregate): ...\nclass Corr(StatAggregate): ...\nclass CovarPop(StatAggregate): ...\nclass RegrAvgX(StatAggregate): ...\nclass RegrAvgY(StatAggregate): ...\nclass RegrCount(StatAggregate): ...\nclass RegrIntercept(StatAggregate): ...\nclass RegrR2... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\postgres\aggregates\statistics.pyi | statistics.pyi | Other | 470 | 0.85 | 0.857143 | 0 | python-kit | 730 | 2023-09-01T03:20:52.332046 | MIT | false | 8acbc184bfa90410884db04135e3e41e |
from .general import (\n ArrayAgg as ArrayAgg,\n BitAnd as BitAnd,\n BitOr as BitOr,\n BoolAnd as BoolAnd,\n BoolOr as BoolOr,\n JSONBAgg as JSONBAgg,\n StringAgg as StringAgg,\n)\n\nfrom .statistics import (\n Corr as Corr,\n CovarPop as CovarPop,\n RegrAvgX as RegrAvgX,\n RegrAvgY as ... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\postgres\aggregates\__init__.pyi | __init__.pyi | Other | 540 | 0.85 | 0 | 0 | vue-tools | 5 | 2024-06-03T14:09:56.823590 | GPL-3.0 | false | 7144e49aa55e46818284b7d6a8e2cb0c |
from typing import Any, Iterable, List, Optional, Sequence, TypeVar, Union\n\nfrom django.db.models.expressions import Combinable\nfrom django.db.models.fields import Field, _ErrorMessagesToOverride, _FieldChoices, _ValidatorCallable\n\nfrom .mixins import CheckFieldDefaultMixin\n\n# __set__ value type\n_ST = TypeVar("... | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\postgres\fields\array.pyi | array.pyi | Other | 1,729 | 0.95 | 0.078431 | 0.043478 | node-utils | 721 | 2024-12-16T08:16:37.467850 | BSD-3-Clause | false | 9b15143b702169d2406f6a0176d1c4bc |
from django.db.models.fields import CharField, EmailField, TextField\n\nclass CIText: ...\nclass CICharField(CIText, CharField): ...\nclass CIEmailField(CIText, EmailField): ...\nclass CITextField(CIText, TextField): ...\n | .venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\contrib\postgres\fields\citext.pyi | citext.pyi | Other | 216 | 0.85 | 0.666667 | 0 | node-utils | 767 | 2025-05-21T14:25:53.617628 | MIT | false | 0be7ac1b73b3e1ed3c677549d0f70262 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.