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 decimal import Decimal\nfrom itertools import chain\nfrom typing import Any, Callable, Dict, Iterable, Iterator, List, Mapping, Optional, Sequence, Set, Tuple, Type, Union\n\nfrom django.core.files.base import File\nfrom django.forms.renderers import EngineMixin\nfrom django.utils.safestring import SafeText\n\n_Op...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\forms\widgets.pyi
widgets.pyi
Other
6,094
0.85
0.372093
0
node-utils
447
2023-08-22T17:27:56.436059
GPL-3.0
false
36f8d30a4f70ae28b8c9e9bb88674deb
from django.core.exceptions import ValidationError as ValidationError\n\nfrom .forms import Form as Form, BaseForm as BaseForm\n\nfrom .formsets import BaseFormSet as BaseFormSet, all_valid as all_valid, formset_factory as formset_factory\n\nfrom .models import (\n ModelForm as ModelForm,\n ModelChoiceField as Mo...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\forms\__init__.pyi
__init__.pyi
Other
2,957
0.85
0
0
awesome-app
487
2023-12-16T12:53:58.783969
GPL-3.0
false
b2461fbf890650896a8c7daecca949e9
from typing import Any, Dict\n\nSimpleCookie: Any\n\ndef parse_cookie(cookie: str) -> Dict[str, str]: ...\n
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\http\cookie.pyi
cookie.pyi
Other
102
0.85
0.2
0
awesome-app
35
2025-01-13T01:42:00.837698
Apache-2.0
false
f2f1e39364cd6efb5cbc693d103e50f5
from io import BytesIO, StringIO\nfrom typing import Any, Dict, Iterator, List, Optional, Tuple, Union\n\nfrom django.http.request import QueryDict\nfrom django.utils.datastructures import ImmutableList, MultiValueDict\n\nclass MultiPartParserError(Exception): ...\nclass InputStreamExhausted(Exception): ...\n\nclass Mu...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\http\multipartparser.pyi
multipartparser.pyi
Other
1,986
0.85
0.574074
0
python-kit
781
2024-02-15T23:00:14.545747
BSD-3-Clause
false
f554a91bd53f75616a478f38bbcd8fd8
from io import BytesIO\nfrom typing import (\n Any,\n BinaryIO,\n Dict,\n Iterable,\n List,\n Mapping,\n Optional,\n Pattern,\n Set,\n Tuple,\n Type,\n TypeVar,\n Union,\n overload,\n)\n\nfrom django.contrib.auth.base_user import AbstractBaseUser\nfrom django.contrib.auth.model...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\http\request.pyi
request.pyi
Other
3,786
0.85
0.297297
0
vue-tools
979
2024-06-14T10:32:56.553394
MIT
false
55063951d1a51b9d45ec2fe977972574
import datetime\nfrom io import BytesIO\nfrom json import JSONEncoder\nfrom typing import Any, Dict, Iterable, Iterator, List, Optional, Tuple, Type, Union, overload\n\nfrom django.core.handlers.wsgi import WSGIRequest\nfrom django.http.cookie import SimpleCookie\nfrom django.test.client import Client\n\nfrom django.te...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\http\response.pyi
response.pyi
Other
4,994
0.95
0.386861
0.02439
react-lib
830
2023-10-19T22:55:51.120546
MIT
false
375ab000b82edf24c53cd15c4486855c
from .request import (\n HttpRequest as HttpRequest,\n QueryDict as QueryDict,\n RawPostDataException as RawPostDataException,\n UnreadablePostError as UnreadablePostError,\n)\n\nfrom .response import (\n BadHeaderError as BadHeaderError,\n FileResponse as FileResponse,\n Http404 as Http404,\n H...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\http\__init__.pyi
__init__.pyi
Other
988
0.85
0
0
vue-tools
815
2025-02-05T20:35:00.926587
Apache-2.0
false
4316fb3b6a49b5a1158022ce6d006f8a
from typing import Any, Optional, Union, Callable\n\nfrom django.http.request import HttpRequest\nfrom django.http.response import HttpResponse, HttpResponseBase\nfrom django.utils.deprecation import MiddlewareMixin\n\nfrom django.core.cache import BaseCache\n\nclass UpdateCacheMiddleware(MiddlewareMixin):\n cache_t...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\middleware\cache.pyi
cache.pyi
Other
1,095
0.85
0.193548
0
vue-tools
144
2025-05-18T04:07:00.446270
MIT
false
73c85021ef8b8889ce23ce4ff4b5189e
from django.http.request import HttpRequest\nfrom django.http.response import HttpResponse\nfrom django.utils.deprecation import MiddlewareMixin\n\nclass XFrameOptionsMiddleware(MiddlewareMixin):\n def process_response(self, request: HttpRequest, response: HttpResponse) -> HttpResponse: ...\n def get_xframe_optio...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\middleware\clickjacking.pyi
clickjacking.pyi
Other
387
0.85
0.428571
0
node-utils
527
2024-09-21T03:03:06.776059
BSD-3-Clause
false
87a4e12fa8be2a50009bd8f97476a5ba
from typing import Any, Optional\n\nfrom django.http.request import HttpRequest\nfrom django.http.response import HttpResponseBase, HttpResponsePermanentRedirect\nfrom django.utils.deprecation import MiddlewareMixin\n\nclass CommonMiddleware(MiddlewareMixin):\n response_redirect_class: Any = ...\n def process_req...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\middleware\common.pyi
common.pyi
Other
987
0.85
0.529412
0
python-kit
939
2025-07-01T23:11:57.795657
MIT
false
c1b2eae646b8c321cd1e4da353fbccff
from typing import Any, Callable, Dict, Optional, Tuple\n\nfrom django.http.request import HttpRequest\nfrom django.http.response import HttpResponseBase, HttpResponseForbidden\nfrom django.utils.deprecation import MiddlewareMixin\n\nlogger: Any\nREASON_NO_REFERER: str\nREASON_BAD_REFERER: str\nREASON_NO_CSRF_COOKIE: s...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\middleware\csrf.pyi
csrf.pyi
Other
1,250
0.85
0.333333
0
python-kit
317
2024-08-27T14:29:04.373426
MIT
false
9a93899f7a11ae734f6f0d3153f8809e
from typing import Any\n\nfrom django.http.request import HttpRequest\nfrom django.http.response import HttpResponseBase\nfrom django.utils.deprecation import MiddlewareMixin\n\nre_accepts_gzip: Any\n\nclass GZipMiddleware(MiddlewareMixin):\n def process_response(self, request: HttpRequest, response: HttpResponseBas...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\middleware\gzip.pyi
gzip.pyi
Other
339
0.85
0.2
0
node-utils
855
2023-10-24T19:38:31.911960
GPL-3.0
false
98f9f9d8e3e5a11a48b6e50a0fad49ee
from django.http.request import HttpRequest\nfrom django.http.response import HttpResponseBase\nfrom django.utils.deprecation import MiddlewareMixin\n\nclass ConditionalGetMiddleware(MiddlewareMixin):\n def process_response(self, request: HttpRequest, response: HttpResponseBase) -> HttpResponseBase: ...\n def nee...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\middleware\http.pyi
http.pyi
Other
369
0.85
0.428571
0
vue-tools
775
2025-06-23T07:04:21.665757
BSD-3-Clause
false
c30856b10518f94a0eac8ac93fd4b31e
from typing import Any\n\nfrom django.http.request import HttpRequest\nfrom django.http.response import HttpResponseBase\nfrom django.utils.deprecation import MiddlewareMixin\n\nclass LocaleMiddleware(MiddlewareMixin):\n response_redirect_class: Any = ...\n def process_request(self, request: HttpRequest) -> None:...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\middleware\locale.pyi
locale.pyi
Other
423
0.85
0.3
0
react-lib
510
2024-05-31T13:00:41.210648
BSD-3-Clause
false
2b911f56140f59cc9eff7682d4130dbb
from typing import Any, List, Optional\n\nfrom django.http.request import HttpRequest\nfrom django.http.response import HttpResponse, HttpResponsePermanentRedirect\nfrom django.utils.deprecation import MiddlewareMixin\n\nclass SecurityMiddleware(MiddlewareMixin):\n sts_seconds: int = ...\n sts_include_subdomains:...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\middleware\security.pyi
security.pyi
Other
715
0.85
0.176471
0
python-kit
964
2024-07-26T15:53:36.087496
Apache-2.0
false
1e46bc3669166d728a201cd3598fd807
from enum import Enum\nfrom typing import Any, Callable, Dict, Iterator, List, Mapping, Optional, Sequence, Tuple, Type, Union\n\nfrom django.http.request import HttpRequest\nfrom django.template.context import Context as Context\nfrom django.template.engine import Engine\nfrom django.template.library import Library\nf...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\template\base.pyi
base.pyi
Other
6,030
0.85
0.327586
0
node-utils
694
2024-05-16T10:44:14.224743
BSD-3-Clause
false
50ffad014259551edc20e29380f00049
from typing import Any, Callable, Dict, Iterator, List, Optional, Type, Union, Iterable\n\nfrom django.http.request import HttpRequest\nfrom django.template.base import Node, Origin, Template\nfrom django.template.defaulttags import IfChangedNode\nfrom django.template.loader_tags import IncludeNode\n\n_ContextValues = ...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\template\context.pyi
context.pyi
Other
3,208
0.85
0.407895
0
awesome-app
312
2024-02-08T12:00:53.242261
GPL-3.0
false
d11c7d83f20f7a0368cddf288b0deb34
from typing import Any, Callable, Dict, List, Tuple, Union\n\nfrom django.core.handlers.wsgi import WSGIRequest\nfrom django.http.request import HttpRequest\nfrom django.utils.functional import SimpleLazyObject\n\ndef csrf(request: HttpRequest) -> Dict[str, SimpleLazyObject]: ...\ndef debug(request: HttpRequest) -> Dic...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\template\context_processors.pyi
context_processors.pyi
Other
640
0.85
0.538462
0
python-kit
846
2024-01-07T20:08:52.853537
MIT
false
207e25d06e01e11b96c6c27f256539a5
from datetime import date as _date, datetime, time as _time\nfrom typing import Any, Callable, Dict, List, Optional, Union\n\nfrom django.utils.safestring import SafeText\nfrom django.utils.html import escape as escape # noqa: F401\n\nregister: Any\n\ndef stringfilter(func: Callable) -> Callable: ...\ndef addslashes(v...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\template\defaultfilters.pyi
defaultfilters.pyi
Other
3,651
0.95
0.878788
0
awesome-app
149
2023-07-24T02:36:40.658729
Apache-2.0
false
b937b0ac120dd9ad6678621ed61111e5
from collections import namedtuple\nfrom datetime import date\nfrom typing import Any, Dict, List, Optional, Sequence, Tuple, Union\n\nfrom django.template.base import FilterExpression, Parser, Token\nfrom django.template.context import Context\nfrom django.utils.safestring import SafeText\n\nfrom .base import Node, No...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\template\defaulttags.pyi
defaulttags.pyi
Other
7,237
0.85
0.367647
0
node-utils
15
2025-05-27T06:25:20.630981
GPL-3.0
false
add8b4ddb5791213061bd715c902271c
from typing import Any, Callable, Dict, List, Optional, Tuple, Union, Sequence\n\nfrom django.template.base import Origin\nfrom django.template.library import Library\nfrom django.template.loaders.base import Loader\nfrom django.utils.safestring import SafeText\n\nfrom .base import Template\n\n_Loader = Any\n\nclass En...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\template\engine.pyi
engine.pyi
Other
2,158
0.85
0.226415
0
awesome-app
793
2024-02-16T20:54:23.432037
MIT
false
063117dd68b65dd7feb641cc6da69bde
from typing import List, Optional, Tuple, Union\n\nfrom django.template.backends.base import BaseEngine\nfrom django.template.base import Origin\n\nclass TemplateDoesNotExist(Exception):\n backend: Optional[BaseEngine] = ...\n tried: List[Tuple[Origin, str]] = ...\n chain: List[TemplateDoesNotExist] = ...\n ...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\template\exceptions.pyi
exceptions.pyi
Other
596
0.85
0.166667
0
react-lib
481
2023-10-23T04:02:37.159566
GPL-3.0
false
b4f2c075a1d9c7f61d57a9e5aaf87489
from typing import Any, Callable, Dict, List, Optional, Tuple, Union\n\nfrom django.template.base import FilterExpression, Parser, Origin, Token\nfrom django.template.context import Context\nfrom django.utils.safestring import SafeText\n\nfrom .base import Node, Template\n\nclass InvalidTemplateLibrary(Exception): ...\...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\template\library.pyi
library.pyi
Other
3,079
0.85
0.185567
0.011236
node-utils
593
2023-08-05T06:19:28.571965
Apache-2.0
false
6c120bee1fd5c943211bdff3565f09f3
from typing import Any, Dict, List, Optional, Union\nfrom . import engines as engines # noqa: F401\n\nfrom django.http.request import HttpRequest\nfrom django.template.exceptions import TemplateDoesNotExist as TemplateDoesNotExist # noqa: F401\n\ndef get_template(template_name: str, using: Optional[str] = ...) -> Any...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\template\loader.pyi
loader.pyi
Other
620
0.95
0.214286
0
python-kit
428
2024-09-12T23:38:43.152066
Apache-2.0
false
57f93d1ad007593417574da811a8b944
import collections\nfrom typing import Any, Dict, List, Optional, Union\n\nfrom django.template.base import FilterExpression, NodeList, Parser, Token, Origin\nfrom django.template.context import Context\nfrom django.utils.safestring import SafeText\n\nfrom .base import Node, Template\n\nregister: Any\nBLOCK_CONTEXT_KEY...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\template\loader_tags.pyi
loader_tags.pyi
Other
2,363
0.85
0.323529
0.033333
awesome-app
390
2024-04-21T16:44:53.483907
Apache-2.0
false
15107c5a488cf9aaabaddd835670026e
import functools\nfrom http.cookies import SimpleCookie\nfrom typing import Any, Callable, Dict, List, Optional, Sequence, Tuple, Union\n\nfrom django.core.handlers.wsgi import WSGIRequest\nfrom django.http.request import HttpRequest\nfrom django.template.base import Template\nfrom django.template.context import Reques...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\template\response.pyi
response.pyi
Other
2,344
0.85
0.176471
0
awesome-app
16
2024-11-11T13:34:11.571953
GPL-3.0
false
78390b224a60e72206f11e6876104bd3
from typing import Any, Dict, List, Optional, Union\n\nfrom django.template.defaulttags import TemplateLiteral\n\n_Token = Union[List[int], int, str]\n\nclass TokenBase:\n id: Any = ...\n value: Any = ...\n first: Any = ...\n second: Any = ...\n def nud(self, parser: Any) -> None: ...\n def led(self, ...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\template\smartif.pyi
smartif.pyi
Other
1,267
0.85
0.44186
0
node-utils
296
2023-11-02T19:39:54.119612
BSD-3-Clause
false
c0d0e042ba90cfafa757ad70a3844816
import collections\nfrom typing import Any, Dict, List, Tuple\n\nfrom django.core.exceptions import ImproperlyConfigured\nfrom django.template.backends.base import BaseEngine\n\nclass InvalidTemplateEngineError(ImproperlyConfigured): ...\n\nclass EngineHandler:\n templates: collections.OrderedDict\n def __init__(...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\template\utils.pyi
utils.pyi
Other
558
0.85
0.4375
0
python-kit
826
2025-04-05T09:22:23.166428
MIT
false
ca1b59f4d8f8d5075218240fd6371060
from .engine import Engine as Engine\nfrom .utils import EngineHandler as EngineHandler\n\nengines: EngineHandler\n\nfrom .base import VariableDoesNotExist as VariableDoesNotExist\nfrom .context import ContextPopException as ContextPopException\nfrom .exceptions import TemplateDoesNotExist as TemplateDoesNotExist, Temp...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\template\__init__.pyi
__init__.pyi
Other
648
0.95
0
0.090909
vue-tools
799
2024-10-14T09:28:59.881305
Apache-2.0
false
d48de4741780495c4bfc40ba19baa79a
from typing import Any, Iterator, List, Mapping, Optional, Tuple\n\nfrom django.template.base import Template\n\nclass BaseEngine:\n name: str = ...\n dirs: List[str] = ...\n app_dirs: bool = ...\n def __init__(self, params: Mapping[str, Any]) -> None: ...\n @property\n def app_dirname(self) -> Option...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\template\backends\base.pyi
base.pyi
Other
601
0.85
0.4375
0
awesome-app
862
2024-04-17T10:47:09.788432
MIT
false
191149e1535013e9f3c676f18bd910a4
from typing import Any, Dict, Iterator, Optional\n\nfrom django.template.engine import Engine\nfrom django.template.exceptions import TemplateDoesNotExist\n\nfrom .base import BaseEngine\n\nclass DjangoTemplates(BaseEngine):\n engine: Engine = ...\n def __init__(self, params: Dict[str, Any]) -> None: ...\n def...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\template\backends\django.pyi
django.pyi
Other
706
0.85
0.4375
0
python-kit
326
2024-12-12T13:53:01.090795
GPL-3.0
false
8dcb130bd931a97489b75fd0d55012aa
import string\nfrom typing import Any, Dict, List, Optional, Tuple, Union\n\nfrom django.http.request import HttpRequest\n\nfrom .base import BaseEngine\n\nclass TemplateStrings(BaseEngine):\n template_dirs: Tuple[str]\n def __init__(self, params: Dict[str, Union[Dict[Any, Any], List[Any], bool, str]]) -> None: ....
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\template\backends\dummy.pyi
dummy.pyi
Other
478
0.85
0.285714
0
awesome-app
621
2024-08-28T08:43:36.373083
BSD-3-Clause
false
5e5fa53fca6bb442063c093b511cd415
from typing import Any, Callable, Dict, List, Optional\n\nfrom django.template.exceptions import TemplateSyntaxError\n\nfrom .base import BaseEngine\n\nclass Jinja2(BaseEngine):\n context_processors: List[str] = ...\n def __init__(self, params: Dict[str, Any]) -> None: ...\n @property\n def template_context...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\template\backends\jinja2.pyi
jinja2.pyi
Other
581
0.85
0.333333
0
node-utils
87
2024-06-09T23:04:22.097174
BSD-3-Clause
false
aa066035372a37786b4113363e7debb4
from typing import Any\n\nfrom django.http.request import HttpRequest\nfrom django.utils.safestring import SafeText\n\ndef csrf_input(request: HttpRequest) -> SafeText: ...\n\ncsrf_input_lazy: Any\ncsrf_token_lazy: Any\n
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\template\backends\utils.pyi
utils.pyi
Other
211
0.85
0.111111
0
vue-tools
745
2024-01-10T10:48:15.616608
MIT
false
d67caa6a90427bc90384512b97794c3a
from .filesystem import Loader as FilesystemLoader\n\nclass Loader(FilesystemLoader): ...\n
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\template\loaders\app_directories.pyi
app_directories.pyi
Other
88
0.65
0.333333
0
react-lib
871
2025-04-02T15:21:57.819366
MIT
false
05c4182134ddcdda96301bb7735181aa
from typing import Any, List, Optional, Dict\n\nfrom django.template.base import Origin, Template\nfrom django.template.engine import Engine\n\nclass Loader:\n engine: Engine = ...\n get_template_cache: Dict[str, Any] = ...\n def __init__(self, engine: Engine) -> None: ...\n def get_template(self, template_...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\template\loaders\base.pyi
base.pyi
Other
476
0.85
0.416667
0
awesome-app
905
2023-10-11T10:31:16.417370
BSD-3-Clause
false
09a947fbe828b3d42a28e54618c4cfca
from typing import Any, Dict, List, Optional, Sequence\n\nfrom django.template.base import Origin\nfrom django.template.engine import Engine\n\nfrom .base import Loader as BaseLoader\n\nclass Loader(BaseLoader):\n template_cache: Dict[str, Any] = ...\n loaders: List[BaseLoader] = ...\n def __init__(self, engin...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\template\loaders\cached.pyi
cached.pyi
Other
564
0.85
0.357143
0
python-kit
90
2023-10-01T12:28:19.373693
GPL-3.0
false
71835706ee95d2f0351fbde3ec7b3f8f
from typing import Any, List, Optional, Union\n\nfrom django.template.base import Origin\nfrom django.template.engine import Engine\n\nfrom .base import Loader as BaseLoader\n\nclass Loader(BaseLoader):\n dirs: Optional[List[str]] = ...\n def __init__(self, engine: Engine, dirs: Optional[List[str]] = ...) -> None...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\template\loaders\filesystem.pyi
filesystem.pyi
Other
433
0.85
0.333333
0
python-kit
590
2025-01-27T20:32:46.714803
GPL-3.0
false
325839d7aa8923ef83c957444e524dfd
from typing import Dict\n\nfrom django.template.base import Origin\nfrom django.template.engine import Engine\n\nfrom .base import Loader as BaseLoader\n\nclass Loader(BaseLoader):\n templates_dict: Dict[str, str] = ...\n def __init__(self, engine: Engine, templates_dict: Dict[str, str]) -> None: ...\n def get...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\template\loaders\locmem.pyi
locmem.pyi
Other
354
0.85
0.272727
0
vue-tools
358
2023-08-23T04:20:18.441069
BSD-3-Clause
false
186d69041125f873a2995e019a6d8729
from typing import Any, List, Optional\n\nfrom django.template.base import FilterExpression, NodeList, Parser, Token\n\nfrom django.template import Node\n\nregister: Any\n\nclass CacheNode(Node):\n nodelist: NodeList = ...\n expire_time_var: FilterExpression = ...\n fragment_name: str = ...\n vary_on: List[...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\templatetags\cache.pyi
cache.pyi
Other
682
0.85
0.125
0
node-utils
423
2024-01-03T16:23:19.237519
GPL-3.0
false
b64158254017f77e171d590b37d2d089
from typing import Any, Dict, List, Optional, Tuple\n\nfrom django.template.base import FilterExpression, NodeList, Parser, Token\n\nfrom django.template import Node\n\nregister: Any\n\nclass GetAvailableLanguagesNode(Node):\n variable: str = ...\n def __init__(self, variable: str) -> None: ...\n\nclass GetLangua...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\templatetags\i18n.pyi
i18n.pyi
Other
3,176
0.85
0.361446
0
node-utils
202
2023-11-12T09:36:43.650222
MIT
false
07b6e796fe04f3bddebfbc7f929d4be7
from typing import Any, List\n\nfrom django.template.base import Parser, Token\n\nfrom django.template import Node\n\nregister: Any\n\ndef localize(value: Any) -> str: ...\ndef unlocalize(value: Any) -> str: ...\n\nclass LocalizeNode(Node):\n nodelist: List[Node] = ...\n use_l10n: bool = ...\n def __init__(sel...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\templatetags\l10n.pyi
l10n.pyi
Other
429
0.85
0.294118
0
node-utils
554
2023-12-25T05:41:32.348727
BSD-3-Clause
false
ec29cccfb3a886366e32962227d43404
from typing import Any, Optional\n\nfrom django.template.base import FilterExpression, Parser, Token\nfrom django.template.context import Context\n\nfrom django import template\n\nregister: Any\n\nclass PrefixNode(template.Node):\n varname: Optional[str] = ...\n name: str = ...\n def __init__(self, varname: Op...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\templatetags\static.pyi
static.pyi
Other
1,170
0.85
0.393939
0
awesome-app
792
2024-02-03T17:20:30.542500
MIT
false
c482eedeb742a581e8664e91b1544da5
from datetime import datetime\nfrom typing import Any, Optional, Union\n\nfrom django.template.base import FilterExpression, NodeList, Parser, Token\nfrom django.utils.timezone import FixedOffset\n\nfrom django.template import Node\n\nregister: Any\n\nclass datetimeobject(datetime): ...\n\ndef localtime(value: Optional...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\templatetags\tz.pyi
tz.pyi
Other
1,166
0.85
0.393939
0
node-utils
652
2024-11-18T18:00:01.203201
Apache-2.0
false
d46363542dd5044d0160f9211e51ee1e
from io import BytesIO\nfrom types import TracebackType\nfrom typing import Any, Dict, List, Optional, Pattern, Tuple, Type, Union\n\nfrom django.contrib.auth.models import AbstractUser\nfrom django.contrib.sessions.backends.base import SessionBase\nfrom django.core.handlers.base import BaseHandler\nfrom django.http.co...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\test\client.pyi
client.pyi
Other
5,593
0.95
0.318182
0.04918
node-utils
865
2024-05-18T16:19:39.343098
BSD-3-Clause
true
c099e9758e00e5abb08e8ada3922e3ef
from html.parser import HTMLParser\nfrom typing import Any, List, Optional, Sequence, Tuple, TypeVar, Union\n\n_Self = TypeVar("_Self")\n\nWHITESPACE: Any\n\ndef normalize_whitespace(string: str) -> str: ...\n\n_ElementAttribute = Tuple[str, Optional[str]]\n\nclass Element:\n name: Optional[str] = ...\n attribute...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\test\html.pyi
html.pyi
Other
1,203
0.85
0.421053
0
vue-tools
304
2024-05-13T08:59:13.578241
MIT
true
a59f0218d65cefb3730607ce7b353d09
import logging\nfrom argparse import ArgumentParser\nfrom io import StringIO\nfrom typing import Any, Dict, List, Optional, Sequence, Set, Tuple, Type\nfrom unittest import TestCase, TestSuite, TextTestResult\n\nfrom django.db.backends.base.base import BaseDatabaseWrapper\nfrom django.test.testcases import SimpleTestCa...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\test\runner.pyi
runner.pyi
Other
5,210
0.85
0.383459
0.008
react-lib
876
2025-05-15T01:52:33.568326
BSD-3-Clause
true
7ef8653d3cf85481a389095be012e8db
from typing import Any\n\nfrom django.test import LiveServerTestCase\n\nclass SeleniumTestCaseBase:\n browsers: Any = ...\n browser: Any = ...\n @classmethod\n def import_webdriver(cls, browser: Any): ...\n def create_webdriver(self): ...\n\nclass SeleniumTestCase(LiveServerTestCase):\n implicit_wait:...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\test\selenium.pyi
selenium.pyi
Other
368
0.85
0.357143
0
react-lib
209
2024-02-27T07:46:03.078152
Apache-2.0
true
f61e45dc3bb625240641e5d870870a32
from typing import Any\nfrom django.core.signals import setting_changed as setting_changed # noqa: F401\n\ntemplate_rendered: Any\nCOMPLEX_OVERRIDE_SETTINGS: Any\n\ndef clear_cache_handlers(**kwargs: Any) -> None: ...\ndef update_installed_apps(**kwargs: Any) -> None: ...\ndef update_connections_time_zone(**kwargs: An...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\test\signals.pyi
signals.pyi
Other
986
0.95
0.714286
0
react-lib
486
2025-05-17T15:53:17.339528
GPL-3.0
true
4e2cd6180911e234abda5252f96db7f7
import threading\nimport unittest\nfrom datetime import date\nfrom typing import Any, Callable, Dict, Iterator, List, Optional, Set, Tuple, Type, Union, ClassVar, overload\n\nfrom django.core.exceptions import ImproperlyConfigured\nfrom django.core.handlers.wsgi import WSGIHandler\nfrom django.core.servers.basehttp imp...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\test\testcases.pyi
testcases.pyi
Other
8,273
0.95
0.28821
0.004739
awesome-app
609
2025-02-28T20:15:20.616301
BSD-3-Clause
true
7d95f987582d2f2102090421cff9961e
import decimal\nfrom contextlib import contextmanager\nfrom decimal import Decimal\nfrom io import StringIO\nfrom typing import (\n Any,\n Callable,\n Dict,\n Iterable,\n Iterator,\n List,\n Mapping,\n Optional,\n Set,\n Tuple,\n Type,\n Union,\n ContextManager,\n TypeVar,\n)\n...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\test\utils.pyi
utils.pyi
Other
5,436
0.95
0.367742
0
vue-tools
958
2024-12-30T16:00:14.566493
Apache-2.0
true
9828ee8c4e13adee5b9d255837087ca9
from .testcases import (\n TestCase as TestCase,\n TransactionTestCase as TransactionTestCase,\n SimpleTestCase as SimpleTestCase,\n LiveServerTestCase as LiveServerTestCase,\n skipIfDBFeature as skipIfDBFeature,\n skipUnlessDBFeature as skipUnlessDBFeature,\n skipUnlessAnyDBFeature as skipUnlessAn...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\test\__init__.pyi
__init__.pyi
Other
671
0.85
0
0
python-kit
559
2025-02-05T14:03:24.697911
Apache-2.0
true
b416e7a14d4eb93245ddc141e78a4d00
from typing import Any, Callable, Dict, Optional, Type, Union, Sequence\n\nfrom django.urls.resolvers import ResolverMatch\n\ndef resolve(path: str, urlconf: Optional[str] = ...) -> ResolverMatch: ...\ndef reverse(\n viewname: Optional[Union[Callable, str]],\n urlconf: Optional[str] = ...,\n args: Optional[Seq...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\urls\base.pyi
base.pyi
Other
887
0.85
0.434783
0
python-kit
61
2024-05-08T08:50:31.137321
MIT
false
b564dced175c211adaae2d64bf2af7b8
from typing import Any, List, Optional, Tuple\n\nfrom .resolvers import URLResolver\n\ndef include(arg: Any, namespace: Optional[str] = ...) -> Tuple[List[URLResolver], Optional[str], Optional[str]]: ...\n\npath: Any\nre_path: Any\n
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\urls\conf.pyi
conf.pyi
Other
224
0.85
0.125
0
awesome-app
120
2023-12-20T03:41:27.068422
BSD-3-Clause
false
4d1bf11f3e541fe257c714f9df82147a
from typing import Any, Dict, Type, Union\nfrom uuid import UUID\n\nclass IntConverter:\n regex: str = ...\n def to_python(self, value: str) -> int: ...\n def to_url(self, value: Union[str, int]) -> str: ...\n\nclass StringConverter:\n regex: str = ...\n def to_python(self, value: str) -> str: ...\n d...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\urls\converters.pyi
converters.pyi
Other
827
0.85
0.518519
0
awesome-app
853
2023-11-06T14:12:13.209708
BSD-3-Clause
false
884c01de44a077ddeb79a537a7b3055d
from django.http import Http404\n\nclass Resolver404(Http404): ...\nclass NoReverseMatch(Exception): ...\n
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\urls\exceptions.pyi
exceptions.pyi
Other
102
0.85
0.5
0
vue-tools
535
2024-07-20T08:11:16.970576
GPL-3.0
false
b348a922f2ef37627ada6519c5daf551
from typing import Any, Callable, Dict, List, Optional, Tuple, Type, Union\n\nfrom django.urls.converters import UUIDConverter\nfrom django.utils.datastructures import MultiValueDict\n\nclass ResolverMatch:\n func: Callable = ...\n args: Tuple = ...\n kwargs: Dict[str, Any] = ...\n url_name: Optional[str] =...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\urls\resolvers.pyi
resolvers.pyi
Other
4,029
0.95
0.372727
0.01
node-utils
505
2024-07-21T00:34:22.928933
MIT
false
ea018feb81417fb5071343d2494f1dd4
from typing import Callable, Tuple, Union\n\ndef get_callable(lookup_view: Union[Callable, str]) -> Callable: ...\ndef get_mod_func(callback: str) -> Tuple[str, str]: ...\n
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\urls\utils.pyi
utils.pyi
Other
168
0.85
0.5
0
awesome-app
927
2024-05-28T21:23:25.448847
MIT
false
c06d04adcd626de4c237944f195919cb
# noinspection PyUnresolvedReferences\nfrom .base import (\n clear_script_prefix as clear_script_prefix,\n clear_url_caches as clear_url_caches,\n get_script_prefix as get_script_prefix,\n get_urlconf as get_urlconf,\n is_valid_path as is_valid_path,\n resolve as resolve,\n reverse as reverse,\n ...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\urls\__init__.pyi
__init__.pyi
Other
1,197
0.95
0
0.193548
node-utils
53
2025-04-30T05:12:03.577224
Apache-2.0
false
102f3f9356d8876bcba047e63da17fc1
from typing import Any, Dict, Iterable, Sequence, Type\n\nclass ArchiveException(Exception): ...\nclass UnrecognizedArchiveFormat(ArchiveException): ...\n\ndef extract(path: str, to_path: str = ...) -> None: ...\n\nclass Archive:\n def __init__(self, file: str) -> None: ...\n def __enter__(self) -> Archive: ...\n...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\archive.pyi
archive.pyi
Other
1,043
0.85
0.7
0
python-kit
823
2025-06-13T11:16:50.257028
GPL-3.0
false
5aa224ddb8afb5555c3daa331d6b53ea
import threading\nimport types\nfrom pathlib import Path\nfrom typing import Any, Callable, List, Optional, Set, Dict, Union, Iterator, Tuple, Iterable\n\nfrom django.apps.registry import Apps\n\nUSE_INOTIFY: bool\nfd: Any\nRUN_RELOADER: bool\nFILE_MODIFIED: int\nI18N_MODIFIED: int\n\ndef gen_filenames(only_new: bool =...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\autoreload.pyi
autoreload.pyi
Other
2,702
0.85
0.61194
0
node-utils
852
2024-07-15T03:43:12.278460
BSD-3-Clause
false
fb4baa2105db276570a0ee44c9594b71
from typing import Any, Tuple, Union\n\nBASE2_ALPHABET: str\nBASE16_ALPHABET: str\nBASE56_ALPHABET: str\nBASE36_ALPHABET: str\nBASE62_ALPHABET: str\nBASE64_ALPHABET: Any\n\nclass BaseConverter:\n decimal_digits: str = ...\n sign: str = ...\n digits: str = ...\n def __init__(self, digits: str, sign: str = .....
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\baseconv.pyi
baseconv.pyi
Other
593
0.85
0.208333
0
vue-tools
917
2023-09-28T10:08:01.428973
Apache-2.0
false
2f6987cd0fc89d8b0e85997e4e1fa2f1
from typing import Any, Optional, Tuple\n\nfrom django.core.cache.backends.base import BaseCache\nfrom django.core.handlers.wsgi import WSGIRequest\nfrom django.http.response import HttpResponse, HttpResponseBase\n\ncc_delim_re: Any\n\ndef patch_cache_control(response: HttpResponseBase, **kwargs: Any) -> None: ...\ndef...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\cache.pyi
cache.pyi
Other
1,338
0.85
0.322581
0
node-utils
143
2024-02-01T14:03:53.183814
MIT
false
3d2ac2ff8405cac6a74f816c2d214164
from hmac import HMAC\nfrom typing import Callable, Optional, Union\n\nusing_sysrandom: bool\n\ndef salted_hmac(key_salt: str, value: Union[bytes, str], secret: Optional[Union[bytes, str]] = ...) -> HMAC: ...\ndef get_random_string(length: int = ..., allowed_chars: str = ...) -> str: ...\ndef constant_time_compare(val1...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\crypto.pyi
crypto.pyi
Other
543
0.85
0.266667
0
awesome-app
551
2023-07-24T01:04:32.231952
Apache-2.0
false
3f8694cc85c17eba61de15ca1c9dc028
from typing import (\n Any,\n Callable,\n Dict,\n Iterable,\n List,\n Mapping,\n MutableMapping,\n MutableSet,\n Tuple,\n TypeVar,\n Union,\n overload,\n Iterator,\n Optional,\n)\n\nfrom typing_extensions import Literal\n\n_K = TypeVar("_K")\n_V = TypeVar("_V")\n\nclass Ordered...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\datastructures.pyi
datastructures.pyi
Other
2,624
0.95
0.48
0.015385
node-utils
707
2025-04-06T02:18:16.976139
MIT
false
0793a6875b86e3f761bbdfde8c9c04ea
from datetime import datetime, date\nfrom typing import Any, Optional, Union\n\nfrom django.utils.timezone import FixedOffset\n\nre_formatchars: Any\nre_escaped: Any\n\nclass Formatter:\n def format(self, formatstr: str) -> str: ...\n\nclass TimeFormat(Formatter):\n data: Union[datetime, str] = ...\n timezone:...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\dateformat.pyi
dateformat.pyi
Other
1,782
0.85
0.746032
0
react-lib
728
2023-12-17T00:38:56.044880
Apache-2.0
false
33bed3b26e2c69f92dee5f6f729a4b84
from datetime import date, datetime, time, timedelta\nfrom typing import Any, Optional\n\ndate_re: Any\ntime_re: Any\ndatetime_re: Any\nstandard_duration_re: Any\niso8601_duration_re: Any\npostgres_interval_re: Any\n\ndef parse_date(value: str) -> Optional[date]: ...\ndef parse_time(value: str) -> Optional[time]: ...\n...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\dateparse.pyi
dateparse.pyi
Other
425
0.85
0.285714
0
awesome-app
216
2024-10-24T19:55:02.474631
Apache-2.0
false
7faf9bf0df92b265cf8de9075b17ac63
from typing import Dict\n\nWEEKDAYS: Dict[int, str]\nWEEKDAYS_ABBR: Dict[int, str]\nMONTHS: Dict[int, str]\nMONTHS_3: Dict[int, str]\nMONTHS_AP: Dict[int, str]\nMONTHS_ALT: Dict[int, str]\n
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\dates.pyi
dates.pyi
Other
181
0.85
0
0
node-utils
727
2023-11-22T17:20:40.923213
Apache-2.0
false
2c9ed59df0dffdeddba316e895f7a5d4
from datetime import date as real_date, datetime as real_datetime, time as real_time\nfrom typing import Union\n\nclass date(real_date): ...\nclass datetime(real_datetime): ...\nclass time(real_time): ...\n\ndef new_date(d: date) -> date: ...\ndef new_datetime(d: date) -> datetime: ...\ndef strftime(dt: Union[date, dat...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\datetime_safe.pyi
datetime_safe.pyi
Other
341
0.85
0.6
0
awesome-app
235
2023-11-16T08:46:38.832150
BSD-3-Clause
false
b8664f8c39023dcdb8640977b15b2dd8
from typing import Any, Optional\n\ndef deconstructible(*args: Any, path: Optional[Any] = ...) -> Any: ...\n
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\deconstruct.pyi
deconstruct.pyi
Other
105
0.85
0.333333
0
awesome-app
414
2024-11-15T11:49:36.057252
GPL-3.0
false
064d8df065253d67c15b2342e508f28f
from typing import Any, Callable, Iterable, Optional, Type, Union, TypeVar\n\nfrom django.utils.deprecation import MiddlewareMixin\nfrom django.views.generic.base import View\n\n_T = TypeVar("_T", bound=Union[View, Callable]) # Any callable\n\nclass classonlymethod(classmethod): ...\n\ndef method_decorator(decorator: ...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\decorators.pyi
decorators.pyi
Other
935
0.95
0.5
0
node-utils
610
2025-04-11T07:52:04.288840
BSD-3-Clause
false
1c6306c6671f365b8063243fe6c67f46
from typing import Any, Callable, Optional, Type\n\nfrom django.http.request import HttpRequest\nfrom django.http.response import HttpResponse\n\nclass RemovedInDjango30Warning(PendingDeprecationWarning): ...\nclass RemovedInDjango31Warning(PendingDeprecationWarning): ...\nclass RemovedInDjango40Warning(PendingDeprecat...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\deprecation.pyi
deprecation.pyi
Other
1,345
0.85
0.4
0
python-kit
708
2025-01-23T12:01:20.126376
Apache-2.0
false
6a1beb10e2d565cd7e4f8b8fedc72022
from datetime import timedelta\n\ndef duration_string(duration: timedelta) -> str: ...\ndef duration_iso_string(duration: timedelta) -> str: ...\ndef duration_microseconds(delta: timedelta) -> int: ...\n
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\duration.pyi
duration.pyi
Other
198
0.85
0.6
0
node-utils
629
2024-09-21T09:49:20.943622
Apache-2.0
false
e557e9b03fefe21da6e2e4937d652bf9
import datetime\nfrom decimal import Decimal\nfrom typing import Any, TypeVar, overload, Union\n\nfrom django.utils.functional import Promise\nfrom typing_extensions import Literal\n\nclass DjangoUnicodeDecodeError(UnicodeDecodeError):\n obj: bytes = ...\n def __init__(self, obj: bytes, *args: Any) -> None: ...\n...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\encoding.pyi
encoding.pyi
Other
2,416
0.85
0.40678
0
awesome-app
489
2024-07-10T18:08:38.668244
Apache-2.0
false
0967f9e060fb4b36197218ab37d99953
from datetime import date, datetime\nfrom typing import Any, Dict, List, Optional, Tuple, Union\nfrom xml.sax import ContentHandler # type: ignore\n\ndef rfc2822_date(date: date) -> str: ...\ndef rfc3339_date(date: date) -> str: ...\ndef get_tag_uri(url: str, date: Optional[date]) -> str: ...\n\nclass SyndicationFeed:...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\feedgenerator.pyi
feedgenerator.pyi
Other
2,677
0.95
0.302632
0.028986
awesome-app
913
2023-11-23T20:22:51.289953
GPL-3.0
false
d02be36650733ac419bf4a3c2bdb39f5
from datetime import datetime, date, time\nfrom decimal import Decimal\nfrom typing import Any, Iterator, List, Optional, Union\n\nISO_INPUT_FORMATS: Any\nFORMAT_SETTINGS: Any\n\ndef reset_format_cache() -> None: ...\ndef iter_format_modules(lang: str, format_module_path: Optional[Union[List[str], str]] = ...) -> Itera...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\formats.pyi
formats.pyi
Other
1,271
0.85
0.322581
0
python-kit
724
2024-09-09T23:08:51.459939
GPL-3.0
false
c239c4ff3b734eb6c0f11737a88dc3fc
from typing import Any, Callable, Dict, List, Optional, Tuple, Type, Union, TypeVar, Generic, overload\nfrom functools import wraps as wraps # noqa: F401\n\nfrom django.db.models.base import Model\n\ndef curry(_curried_func: Any, *args: Any, **kwargs: Any): ...\n\n_T = TypeVar("_T")\n\nclass cached_property(Generic[_T...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\functional.pyi
functional.pyi
Other
1,923
0.95
0.40678
0
node-utils
423
2025-04-05T14:07:01.990375
BSD-3-Clause
false
508b7ea19aa413088f3316499b1e3b4c
from typing import Any\n\ndef make_hashable(value: Any) -> Any: ...\n
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\hashable.pyi
hashable.pyi
Other
66
0.65
0.333333
0
vue-tools
247
2024-05-03T00:54:28.673954
BSD-3-Clause
false
29aace1eefd5eb6f7bd525ee6f553ac3
from html.parser import HTMLParser\nfrom typing import Any, Iterator, List, Optional, Tuple, Union\n\nfrom django.utils.safestring import SafeText\n\nTRAILING_PUNCTUATION_CHARS: str\nWRAPPING_PUNCTUATION: Any\nDOTS: Any\nunencoded_ampersands_re: Any\nword_split_re: Any\nsimple_url_re: Any\nsimple_url_2_re: Any\n\ndef e...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\html.pyi
html.pyi
Other
1,366
0.85
0.513514
0
awesome-app
664
2025-07-07T19:46:05.223722
MIT
false
6056df9a511a2576032f340b545d16df
from typing import Any, Iterable, List, Optional, Tuple, Union\n\nETAG_MATCH: Any\nMONTHS: Any\nRFC1123_DATE: Any\nRFC850_DATE: Any\nASCTIME_DATE: Any\nRFC3986_GENDELIMS: str\nRFC3986_SUBDELIMS: str\nFIELDS_MATCH: Any\n\ndef urlquote(url: str, safe: str = ...) -> str: ...\ndef urlquote_plus(url: str, safe: str = ...) -...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\http.pyi
http.pyi
Other
1,544
0.85
0.540541
0
python-kit
734
2025-01-02T15:23:00.730353
GPL-3.0
false
5f67a44432ca4758fa23299c4cf4f077
from typing import Callable, List, Tuple\n\ndef get_func_args(func: Callable) -> List[str]: ...\ndef get_func_full_args(func: Callable) -> List[Tuple[str]]: ...\ndef func_accepts_kwargs(func: Callable) -> bool: ...\ndef func_accepts_var_args(func: Callable) -> bool: ...\ndef method_has_no_args(meth: Callable) -> bool: ...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\inspect.pyi
inspect.pyi
Other
391
0.85
0.75
0
vue-tools
928
2024-12-05T08:33:29.300743
Apache-2.0
false
c2c5d22d29378bf0a04e8d0b1c8d119f
from typing import Any\n\ndef clean_ipv6_address(ip_str: Any, unpack_ipv4: bool = ..., error_message: Any = ...): ...\ndef is_valid_ipv6_address(ip_str: str) -> bool: ...\n
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\ipv6.pyi
ipv6.pyi
Other
168
0.85
0.5
0
python-kit
701
2024-10-21T22:08:47.249896
BSD-3-Clause
false
7b81988e0a196ad6eb47e74c67e94666
from typing import Any\n\ndef is_iterable(x: Any) -> bool: ...\n
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\itercompat.pyi
itercompat.pyi
Other
61
0.65
0.333333
0
react-lib
561
2023-08-14T06:28:51.105323
GPL-3.0
false
6f3e34acee183964318080524310c911
from typing import Any, Dict, Iterator, List, Optional, Tuple\n\nclass Tok:\n num: int = ...\n id: int = ...\n name: str = ...\n regex: str = ...\n next: Optional[str] = ...\n def __init__(self, name: str, regex: str, next: Optional[str] = ...) -> None: ...\n\ndef literals(choices: str, prefix: str = ...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\jslex.pyi
jslex.pyi
Other
748
0.85
0.346154
0
awesome-app
481
2025-06-28T18:18:03.477813
MIT
false
00a0713ab97e02d902c0e613c4f7066f
import logging.config\nfrom logging import LogRecord\nfrom typing import Any, Callable, Dict, Optional, Union\n\nfrom django.core.management.color import Style\n\nrequest_logger: Any\nDEFAULT_LOGGING: Any\n\ndef configure_logging(logging_config: str, logging_settings: Dict[str, Any]) -> None: ...\n\nclass AdminEmailHan...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\log.pyi
log.pyi
Other
1,501
0.85
0.377778
0.027778
python-kit
728
2024-04-11T05:49:00.582633
Apache-2.0
false
98c0519c908817e2907800229e11f4ac
from typing import Any, List\n\nCOMMON_P: str\nWORDS: Any\nCOMMON_WORDS: Any\n\ndef sentence() -> str: ...\ndef paragraph() -> str: ...\ndef paragraphs(count: int, common: bool = ...) -> List[str]: ...\ndef words(count: int, common: bool = ...) -> str: ...\n
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\lorem_ipsum.pyi
lorem_ipsum.pyi
Other
248
0.85
0.4
0
awesome-app
283
2025-07-02T18:09:45.659461
Apache-2.0
false
7e3aced73d95d71dd2dc3a405f4d2306
from typing import Any\n\ndef import_string(dotted_path: str) -> Any: ...\ndef autodiscover_modules(*args: Any, **kwargs: Any) -> None: ...\ndef module_has_submodule(package: Any, module_name: str) -> bool: ...\ndef module_dir(module: Any) -> str: ...\n
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\module_loading.pyi
module_loading.pyi
Other
247
0.85
0.666667
0
react-lib
561
2024-02-20T05:30:34.295927
BSD-3-Clause
false
b7eeb12626b0479e3e5f07274646683e
from decimal import Decimal\nfrom typing import Optional, Sequence, Union\n\ndef format(\n number: Union[Decimal, float, str],\n decimal_sep: str,\n decimal_pos: Optional[int] = ...,\n grouping: Union[int, Sequence[int]] = ...,\n thousand_sep: str = ...,\n force_grouping: bool = ...,\n use_l10n: Op...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\numberformat.pyi
numberformat.pyi
Other
344
0.85
0.083333
0
awesome-app
900
2024-02-10T20:23:38.223285
MIT
false
ced105490b257d6d017d268f3c9a5dc9
from typing import Any, Iterator, List, Optional, Tuple, Type, Union\n\nESCAPE_MAPPINGS: Any\n\nclass Choice(list): ...\nclass Group(list): ...\nclass NonCapture(list): ...\n\ndef normalize(pattern: str) -> List[Tuple[str, List[str]]]: ...\ndef next_char(input_iter: Any) -> None: ...\ndef walk_to_end(ch: str, input_ite...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\regex_helper.pyi
regex_helper.pyi
Other
658
0.85
0.5625
0
vue-tools
825
2025-06-08T19:47:55.993886
GPL-3.0
false
7150616ee62bab5a68aa4462562be625
from typing import TypeVar, overload, Callable, Any\n\n_SD = TypeVar("_SD", bound="SafeData")\n\nclass SafeData:\n def __html__(self: _SD) -> _SD: ...\n\nclass SafeText(str, SafeData):\n @overload\n def __add__(self, rhs: SafeText) -> SafeText: ...\n @overload\n def __add__(self, rhs: str) -> str: ...\n ...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\safestring.pyi
safestring.pyi
Other
629
0.85
0.384615
0
python-kit
954
2023-09-23T13:03:06.246650
MIT
false
2565d300f59378f20ab489800b342ddc
from __future__ import print_function\n\nimport types\nimport typing\nimport unittest\nfrom typing import (\n Any,\n AnyStr,\n Callable,\n Dict,\n ItemsView,\n Iterable,\n KeysView,\n Mapping,\n NoReturn,\n Optional,\n Pattern,\n Text,\n Tuple,\n Type,\n TypeVar,\n Union,...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\six.pyi
six.pyi
Other
3,408
0.95
0.349057
0.068182
react-lib
37
2024-07-08T08:43:30.954936
Apache-2.0
false
af6753762da222ee6f89e1220d7fd49b
from typing import Any, Callable, Dict, Optional, Tuple, Union, Sequence\n\ncolor_names: Any\nforeground: Any\nbackground: Any\nRESET: str\nopt_dict: Any\n\ndef colorize(text: Optional[str] = ..., opts: Sequence[str] = ..., **kwargs: Any) -> str: ...\ndef make_style(opts: Tuple = ..., **kwargs: Any) -> Callable: ...\n\...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\termcolors.pyi
termcolors.pyi
Other
517
0.85
0.166667
0
react-lib
415
2023-10-01T17:24:44.609948
GPL-3.0
false
40a1324517de012a38120d5ae0b3f9a4
from typing import Any, Iterable, Iterator, List, Optional, Union\n\nfrom django.db.models.base import Model\nfrom django.utils.functional import SimpleLazyObject\nfrom django.utils.safestring import SafeText\n\ndef capfirst(x: Optional[str]) -> Optional[str]: ...\n\nre_words: Any\nre_chars: Any\nre_tag: Any\nre_newlin...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\text.pyi
text.pyi
Other
1,583
0.85
0.510638
0
react-lib
639
2025-04-03T10:06:51.206648
BSD-3-Clause
false
fc0da45259f14fcec654b2a3c251ec4e
from datetime import date\nfrom typing import Any, Optional, Dict\n\nTIME_STRINGS: Dict[str, str]\nTIMESINCE_CHUNKS: Any\n\ndef timesince(\n d: date, now: Optional[date] = ..., reversed: bool = ..., time_strings: Optional[Dict[str, str]] = ...\n) -> str: ...\ndef timeuntil(d: date, now: Optional[date] = ..., time_st...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\timesince.pyi
timesince.pyi
Other
362
0.85
0.2
0
node-utils
652
2024-05-12T07:58:16.757327
Apache-2.0
false
81228462541ad9e063d4e3f863625bef
import types\nfrom contextlib import ContextDecorator\nfrom datetime import date, datetime as datetime, time, timedelta as timedelta, tzinfo as tzinfo, timezone\nfrom typing import Optional, Union, Type\n\nfrom pytz import BaseTzInfo\n\n_AnyTime = Union[time, datetime]\n\nclass UTC(tzinfo):\n def utcoffset(self, dt:...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\timezone.pyi
timezone.pyi
Other
2,714
0.95
0.564516
0.058824
node-utils
582
2025-02-21T05:39:00.208189
BSD-3-Clause
false
e0c58f1849570b7768cd4ac546046c49
from typing import Any, Dict, Iterator, Set, Container, List\n\nclass CyclicDependencyError(ValueError): ...\n\ndef topological_sort_as_sets(dependency_graph: Dict[Any, Any]) -> Iterator[Set[Any]]: ...\ndef stable_topological_sort(l: Container[Any], dependency_graph: Dict[Any, Any]) -> List[Any]: ...\n
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\topological_sort.pyi
topological_sort.pyi
Other
297
0.85
0.5
0
awesome-app
769
2023-12-14T23:39:46.191958
BSD-3-Clause
false
816c09ea667bf4d53d574dd245b5dd31
from typing import Any, Dict, Iterable, Optional, Tuple, Union, Sequence, List\n\nfrom django.db.models.sql.where import NothingNode\n\n_NodeChildren = Iterable[Union["Node", NothingNode, Sequence[Any]]]\n\nclass Node:\n children: List[Any]\n default: Any = ...\n connector: str = ...\n negated: bool = ...\n...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\tree.pyi
tree.pyi
Other
799
0.85
0.428571
0
python-kit
629
2024-11-16T00:34:44.637409
MIT
false
b5f3f1735cad6eee810361ae9633ef16
from typing import Any, Optional, Tuple\n\nPY36: Any\nPY37: Any\nPY38: Any\nPY39: Any\n\ndef get_version(version: Optional[Tuple[int, int, int, str, int]] = ...) -> str: ...\ndef get_main_version(version: Tuple[int, int, int, str, int] = ...) -> str: ...\ndef get_complete_version(version: Optional[Tuple[int, int, int, ...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\version.pyi
version.pyi
Other
516
0.85
0.461538
0
vue-tools
685
2025-04-18T11:35:09.038916
Apache-2.0
false
0943a0a77bcd95aa735670c0c9657945
from typing import Dict, Optional\nfrom xml.sax.saxutils import XMLGenerator\n\nclass UnserializableContentError(ValueError): ...\n\nclass SimplerXMLGenerator(XMLGenerator):\n def addQuickElement(\n self, name: str, contents: Optional[str] = ..., attrs: Optional[Dict[str, str]] = ...\n ) -> None: ...\n ...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\xmlutils.pyi
xmlutils.pyi
Other
433
0.85
0.454545
0
node-utils
351
2023-09-25T04:54:19.918447
GPL-3.0
false
bbeb1129264ab243d001c7660cabf7ee
from os.path import abspath\nfrom pathlib import Path\nfrom typing import Any, Union\n\nabspathu = abspath\n\ndef upath(path: Any): ...\ndef npath(path: Any): ...\ndef safe_join(base: Union[bytes, str], *paths: Any) -> str: ...\ndef symlinks_supported() -> Any: ...\ndef to_path(value: Union[Path, str]) -> Path: ...\n
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\utils\_os.pyi
_os.pyi
Other
307
0.85
0.454545
0
node-utils
611
2023-07-19T04:06:39.140489
GPL-3.0
false
c27a4d22725682e06be3cb8e82e90321