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 django.core.management.base import BaseCommand\n\nclass Command(BaseCommand):\n default_addr: str = ...\n default_addr_ipv6: str = ...\n default_port: int = ...\n protocol: str = ...\n
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\core\management\commands\runserver.pyi
runserver.pyi
Other
194
0.85
0.142857
0
awesome-app
788
2023-11-28T01:54:31.091522
MIT
false
1728e3f24ebeb7ed367847a7608f6c7a
from django.core.management.base import BaseCommand\n\nclass Command(BaseCommand): ...\n
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\core\management\commands\testserver.pyi
testserver.pyi
Other
85
0.65
0.333333
0
react-lib
700
2024-08-07T20:08:05.331407
MIT
true
6b8cad3305cef8186496283d80f5ea37
from datetime import date\nfrom io import BufferedReader, StringIO, TextIOWrapper\nfrom typing import Any, Dict, Iterable, List, Mapping, Optional, Type, Union, Collection\nfrom uuid import UUID\n\nfrom django.core.management.base import OutputWrapper\nfrom django.db.models.base import Model\nfrom django.db.models.fiel...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\core\serializers\base.pyi
base.pyi
Other
3,388
0.85
0.344828
0.025974
vue-tools
902
2023-09-13T17:54:42.913052
BSD-3-Clause
false
a46ff3b0f0ab522a8b95c6f8bc0ac75e
import json\nfrom typing import Any, Dict\n\nfrom django.core.serializers.python import Serializer as PythonSerializer\n\nclass Serializer(PythonSerializer):\n json_kwargs: Dict[str, Any]\n\ndef Deserializer(stream_or_string: Any, **options: Any) -> None: ...\n\nclass DjangoJSONEncoder(json.JSONEncoder):\n allow_...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\core\serializers\json.pyi
json.pyi
Other
422
0.85
0.176471
0
awesome-app
972
2024-01-26T20:21:07.090230
Apache-2.0
false
a3a3dd5a69cce9c0769b15dc887a118a
from collections import OrderedDict\nfrom typing import Any, Dict, Iterator, List, Optional\n\nfrom django.core.serializers.base import DeserializedObject\nfrom django.db.models.base import Model\n\nfrom django.core.serializers import base\n\nclass Serializer(base.Serializer):\n objects: List[Any] = ...\n def get...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\core\serializers\python.pyi
python.pyi
Other
535
0.85
0.2
0
react-lib
228
2025-06-02T11:11:11.703928
Apache-2.0
false
ce20e80df847990eb8d70bf5ae636a6e
from typing import Any, Callable, Dict, Iterable, Iterator, List, Optional, Type, Union\n\nfrom django.db.models.base import Model\n\nfrom .base import (\n DeserializationError as DeserializationError,\n DeserializedObject,\n Deserializer as Deserializer,\n M2MDeserializationError as M2MDeserializationError...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\core\serializers\__init__.pyi
__init__.pyi
Other
1,377
0.85
0.387097
0
vue-tools
126
2024-02-11T17:30:26.717436
BSD-3-Clause
false
36ded60dc56b7c1a36865883c22ba0e5
import socketserver\nfrom io import BytesIO\nfrom typing import Any, Dict\nfrom wsgiref import simple_server\n\nfrom django.core.handlers.wsgi import WSGIRequest, WSGIHandler\nfrom django.core.wsgi import get_wsgi_application as get_wsgi_application # noqa: F401\n\nclass WSGIServer(simple_server.WSGIServer):\n requ...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\core\servers\basehttp.pyi
basehttp.pyi
Other
1,301
0.95
0.333333
0
react-lib
555
2024-05-10T17:06:52.165070
MIT
false
329693922516cbad2f3d530fe2de11fd
from contextlib import contextmanager\nfrom typing import Any, Callable, Optional, overload, TypeVar, Iterator\n\nfrom django.db import ProgrammingError\n\nclass TransactionManagementError(ProgrammingError): ...\n\ndef get_connection(using: Optional[str] = ...) -> Any: ...\ndef get_autocommit(using: Optional[str] = ......
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\transaction.pyi
transaction.pyi
Other
2,032
0.95
0.510204
0.15
react-lib
630
2025-01-18T11:12:00.043146
MIT
false
d2041935f36fc2587839c594ccb57377
from typing import Any, Dict, Iterable, List, Optional\n\nDEFAULT_DB_ALIAS: str\nDJANGO_VERSION_PICKLE_KEY: str\n\nclass Error(Exception): ...\nclass InterfaceError(Error): ...\nclass DatabaseError(Error): ...\nclass DataError(DatabaseError): ...\nclass OperationalError(DatabaseError): ...\nclass IntegrityError(Databas...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\utils.pyi
utils.pyi
Other
1,244
0.85
0.685714
0
awesome-app
143
2023-08-18T08:33:08.218040
GPL-3.0
false
283c25c6fb37005fcb042c07661b7d4d
from typing import Any\n\nfrom .utils import (\n DEFAULT_DB_ALIAS as DEFAULT_DB_ALIAS,\n DJANGO_VERSION_PICKLE_KEY as DJANGO_VERSION_PICKLE_KEY,\n ProgrammingError as ProgrammingError,\n IntegrityError as IntegrityError,\n OperationalError as OperationalError,\n DatabaseError as DatabaseError,\n Da...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\__init__.pyi
__init__.pyi
Other
936
0.85
0.193548
0
react-lib
307
2023-10-14T04:20:30.122127
BSD-3-Clause
false
af82f351af5d481608d05e3e4b272fb4
from typing import Any, Callable, List, Tuple, Union, Dict\n\nclass Reference:\n def references_table(self, table: Any): ...\n def references_column(self, table: Any, column: Any): ...\n def rename_table_references(self, old_table: Any, new_table: Any) -> None: ...\n def rename_column_references(self, table...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\backends\ddl_references.pyi
ddl_references.pyi
Other
2,657
0.85
0.439394
0
react-lib
823
2024-04-08T05:09:43.646368
GPL-3.0
false
d9ed957342f0ff7ac7967cba7f602017
from django.dispatch import Signal\n\nconnection_created: Signal = ...\n
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\backends\signals.pyi
signals.pyi
Other
69
0.65
0
0
awesome-app
456
2024-04-12T03:38:09.862264
BSD-3-Clause
false
5d098e4e582f19efb614a5570fd39eb7
import types\nfrom datetime import date, datetime, time\nfrom decimal import Decimal\nfrom typing import Any, Dict, List, Mapping, Optional, Sequence, Tuple, Type, Union\nfrom uuid import UUID\n\nlogger: Any\n\n# Python types that can be adapted to SQL.\n_SQLType = Union[None, bool, int, float, Decimal, str, bytes, dat...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\backends\utils.pyi
utils.pyi
Other
1,835
0.95
0.382979
0.02381
node-utils
120
2024-05-01T21:10:00.952785
MIT
false
0cbe46297f5da525cfdab11ff77339b5
from typing import Any, Callable, Dict, Iterator, List, Optional\n\nfrom django.db.backends.base.client import BaseDatabaseClient\nfrom django.db.backends.base.creation import BaseDatabaseCreation\nfrom django.db.backends.base.validation import BaseDatabaseValidation\nfrom django.db.backends.utils import CursorDebugWra...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\backends\base\base.pyi
base.pyi
Other
4,348
0.85
0.45098
0
python-kit
833
2024-09-15T12:38:16.287950
Apache-2.0
false
146a97e8d52f1377df0799fcb90fd346
from typing import Any\n\nfrom django.db.backends.base.base import BaseDatabaseWrapper\n\nclass BaseDatabaseClient:\n executable_name: Any = ...\n connection: Any = ...\n def __init__(self, connection: BaseDatabaseWrapper) -> None: ...\n def runshell(self) -> None: ...\n
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\backends\base\client.pyi
client.pyi
Other
274
0.85
0.333333
0
react-lib
512
2023-12-21T04:50:45.036022
MIT
false
c0098f83bb58bba7236085ce68e0f6a9
from typing import Any, Dict, Optional, Tuple, Union\n\nfrom django.db.backends.base.base import BaseDatabaseWrapper\n\nTEST_DATABASE_PREFIX: str\n\nclass BaseDatabaseCreation:\n connection: Any = ...\n def __init__(self, connection: BaseDatabaseWrapper) -> None: ...\n def create_test_db(\n self, verbos...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\backends\base\creation.pyi
creation.pyi
Other
1,103
0.85
0.458333
0
vue-tools
750
2024-12-14T21:23:37.507162
Apache-2.0
false
4fdf0d6ba61206f80615d0410454c18a
from typing import Any\n\nfrom django.db.backends.base.base import BaseDatabaseWrapper\n\nclass BaseDatabaseFeatures:\n gis_enabled: bool = ...\n allows_group_by_pk: bool = ...\n allows_group_by_selected_pks: bool = ...\n empty_fetchmany_value: Any = ...\n update_can_self_select: bool = ...\n interpre...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\backends\base\features.pyi
features.pyi
Other
4,244
0.85
0.05
0
node-utils
424
2023-11-19T05:29:28.949964
MIT
false
893bad998b7e8dc4ccade19ebbdffd41
from collections import namedtuple\nfrom typing import Any, Dict, List, Optional, Set, Type\n\nfrom django.db.backends.base.base import BaseDatabaseWrapper\nfrom django.db.backends.utils import CursorWrapper\nfrom django.db.models.base import Model\n\nTableInfo = namedtuple("TableInfo", ["name", "type"])\n\nFieldInfo =...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\backends\base\introspection.pyi
introspection.pyi
Other
1,490
0.85
0.518519
0
node-utils
136
2024-12-06T02:33:29.792886
Apache-2.0
false
d4647a13e4e7dabf837e2dfc33132e74
from datetime import date, datetime, timedelta, time\nfrom decimal import Decimal\nfrom typing import Any, List, Optional, Sequence, Tuple, Type, Union\n\nfrom django.core.management.color import Style\nfrom django.db.backends.base.base import BaseDatabaseWrapper\nfrom django.db.backends.utils import CursorWrapper\nfro...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\backends\base\operations.pyi
operations.pyi
Other
6,237
0.85
0.682692
0
vue-tools
716
2025-05-27T16:26:10.193060
MIT
false
151349bc7cf3fb09909c434c2e5c90bb
from typing import Any, ContextManager, List, Optional, Sequence, Tuple, Type, Union\n\nfrom django.db.backends.ddl_references import Statement\nfrom django.db.models.base import Model\nfrom django.db.models.indexes import Index\n\nfrom django.db.models.fields import Field\n\nlogger: Any\n\nclass BaseDatabaseSchemaEdit...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\backends\base\schema.pyi
schema.pyi
Other
3,346
0.85
0.298701
0
node-utils
628
2025-06-24T23:24:15.075095
Apache-2.0
false
40d760e5bbc638e55720bead19aa0f65
from typing import Any, List\n\nfrom django.db.backends.base.base import BaseDatabaseWrapper\n\nfrom django.db.models.fields import Field\n\nclass BaseDatabaseValidation:\n connection: Any = ...\n def __init__(self, connection: BaseDatabaseWrapper) -> None: ...\n def check(self, **kwargs: Any) -> List[Any]: .....
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\backends\base\validation.pyi
validation.pyi
Other
386
0.85
0.363636
0
react-lib
430
2024-07-23T03:07:08.080757
Apache-2.0
false
b77e3690634232414d5eeae7cb509808
from typing import Any\n\nfrom django.db.backends.base.base import BaseDatabaseWrapper\nfrom django.db.backends.base.client import BaseDatabaseClient\nfrom django.db.backends.base.creation import BaseDatabaseCreation\nfrom django.db.backends.base.introspection import BaseDatabaseIntrospection\nfrom django.db.backends.b...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\backends\dummy\base.pyi
base.pyi
Other
1,029
0.85
0.225806
0
react-lib
597
2023-08-28T07:55:57.712286
MIT
false
453d8e9933715615b09c8cd615c4ef2a
from typing import Dict, List, Optional, Union\n\nfrom django.db.backends.base.client import BaseDatabaseClient\n\nclass DatabaseClient(BaseDatabaseClient):\n executable_name: str = ...\n @classmethod\n def settings_to_cmd_args(\n cls, settings_dict: Dict[str, Optional[Union[Dict[str, Dict[str, str]], i...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\backends\mysql\client.pyi
client.pyi
Other
383
0.85
0.272727
0
react-lib
521
2024-10-12T18:22:35.070887
BSD-3-Clause
false
ee5600f4118f9e0ee65725c98f14284a
from typing import Dict, Tuple\n\nfrom django.db.backends.base.base import BaseDatabaseWrapper\n\ndef psycopg2_version() -> Tuple[int, ...]: ...\n\nPSYCOPG2_VERSION: Tuple[int, ...] = ...\n\nclass DatabaseWrapper(BaseDatabaseWrapper):\n operators: Dict[str, str] = ...\n pattern_esc: str = ...\n pattern_ops: Di...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\backends\postgresql\base.pyi
base.pyi
Other
459
0.95
0.176471
0.083333
node-utils
836
2025-01-16T11:48:05.992678
GPL-3.0
false
67b5e51931dde9cb6bf73b82c5ab2165
from typing import Dict\n\nfrom django.db.backends.base.client import BaseDatabaseClient\n\nclass DatabaseClient(BaseDatabaseClient):\n executable_name: str = ...\n @classmethod\n def runshell_db(cls, conn_params: Dict[str, str]) -> None: ...\n def runshell(self) -> None: ...\n
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\backends\postgresql\client.pyi
client.pyi
Other
281
0.85
0.333333
0
awesome-app
390
2024-03-03T19:42:55.885720
MIT
false
ebda1582a93ee12d95defb268488b893
from django.db.backends.base.creation import BaseDatabaseCreation\n\nclass DatabaseCreation(BaseDatabaseCreation): ...\n
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\backends\postgresql\creation.pyi
creation.pyi
Other
117
0.85
0.333333
0
react-lib
1,000
2024-08-07T18:07:13.378411
Apache-2.0
false
d777430060f3f4152b7cf359860a923e
from django.db.backends.base.operations import BaseDatabaseOperations\n\nclass DatabaseOperations(BaseDatabaseOperations): ...\n
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\backends\postgresql\operations.pyi
operations.pyi
Other
125
0.85
0.333333
0
react-lib
72
2025-03-21T11:18:59.714166
GPL-3.0
false
ff32cc8f8bd938a5b4d6ba4618ac8787
from sqlite3 import dbapi2 as Database\nfrom typing import Any, Callable\n\nfrom django.db.backends.base.base import BaseDatabaseWrapper\n\ndef decoder(conv_func: Callable) -> Callable: ...\n\nclass DatabaseWrapper(BaseDatabaseWrapper): ...\n\nFORMAT_QMARK_REGEX: Any\n\nclass SQLiteCursorWrapper(Database.Cursor): ...\n...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\backends\sqlite3\base.pyi
base.pyi
Other
349
0.85
0.285714
0
python-kit
312
2025-02-03T16:37:31.107292
GPL-3.0
false
dfcadaea2961e77cf9ed0bc007fe8ffd
from django.db.backends.base.creation import BaseDatabaseCreation\n\nclass DatabaseCreation(BaseDatabaseCreation): ...\n
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\backends\sqlite3\creation.pyi
creation.pyi
Other
117
0.85
0.333333
0
vue-tools
168
2024-08-01T11:49:10.050896
BSD-3-Clause
false
d777430060f3f4152b7cf359860a923e
from django.db.backends.base.features import BaseDatabaseFeatures\n\nclass DatabaseFeatures(BaseDatabaseFeatures): ...\n
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\backends\sqlite3\features.pyi
features.pyi
Other
117
0.85
0.333333
0
python-kit
833
2024-08-24T14:33:01.426004
GPL-3.0
false
4c2972c6f68c08ddd8926be2cb94be61
from typing import Any, Optional\n\nfrom django.db.backends.base.introspection import BaseDatabaseIntrospection\n\nfield_size_re: Any\n\ndef get_field_size(name: str) -> Optional[int]: ...\n\nclass FlexibleFieldLookupDict:\n base_data_types_reverse: Any = ...\n def __getitem__(self, key: str) -> Any: ...\n\nclass...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\backends\sqlite3\introspection.pyi
introspection.pyi
Other
363
0.85
0.307692
0
node-utils
772
2024-04-13T03:07:41.848222
Apache-2.0
false
3eb3d503108e562782c3386c5f8bf631
from django.db.backends.base.operations import BaseDatabaseOperations\n\nclass DatabaseOperations(BaseDatabaseOperations): ...\n
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\backends\sqlite3\operations.pyi
operations.pyi
Other
125
0.85
0.333333
0
react-lib
188
2023-11-04T16:47:35.919298
Apache-2.0
false
ff32cc8f8bd938a5b4d6ba4618ac8787
from django.db.backends.base.schema import BaseDatabaseSchemaEditor\n\nclass DatabaseSchemaEditor(BaseDatabaseSchemaEditor): ...\n
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\backends\sqlite3\schema.pyi
schema.pyi
Other
127
0.85
0.333333
0
awesome-app
774
2024-01-29T22:57:48.849381
GPL-3.0
false
872e6d6a10f0c56b90a65f787a7cff4a
from typing import Any, Callable, Dict, List, Optional, Set, Tuple, Union\n\nfrom django.db.migrations.graph import MigrationGraph\nfrom django.db.migrations.migration import Migration\nfrom django.db.migrations.operations.base import Operation\nfrom django.db.migrations.questioner import MigrationQuestioner\nfrom djan...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\migrations\autodetector.pyi
autodetector.pyi
Other
3,011
0.85
0.432836
0
awesome-app
311
2023-08-16T06:52:22.008569
BSD-3-Clause
false
8f28370a31ca2ba25ecb5959ff9e9e4b
from typing import Optional, Tuple\n\nfrom django.db.migrations.migration import Migration\nfrom django.db.utils import DatabaseError\n\nclass AmbiguityError(Exception): ...\nclass BadMigrationError(Exception): ...\nclass CircularDependencyError(Exception): ...\nclass InconsistentMigrationHistory(Exception): ...\nclass...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\migrations\exceptions.pyi
exceptions.pyi
Other
709
0.85
0.5
0
vue-tools
857
2024-07-01T08:57:40.125107
BSD-3-Clause
false
049f61f6dfb52fee27612a46850618b1
from typing import Any, Callable, List, Optional, Set, Tuple, Union\n\nfrom django.db import DefaultConnectionProxy\nfrom django.db.backends.base.base import BaseDatabaseWrapper\nfrom django.db.migrations.migration import Migration\n\nfrom .loader import MigrationLoader\nfrom .recorder import MigrationRecorder\nfrom .s...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\migrations\executor.pyi
executor.pyi
Other
1,679
0.85
0.225
0
awesome-app
494
2024-02-07T12:18:06.382141
Apache-2.0
false
f396516e675a57230fdf972f505f5a87
from typing import Any, Dict, List, Optional, Set, Tuple, Union\n\nfrom django.db.migrations.migration import Migration, SwappableTuple\nfrom django.db.migrations.state import ProjectState\n\nRECURSION_DEPTH_WARNING: str\n\nclass Node:\n key: Tuple[str, str] = ...\n children: Set[Any] = ...\n parents: Set[Any]...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\migrations\graph.pyi
graph.pyi
Other
2,531
0.85
0.537037
0
node-utils
691
2024-05-01T23:42:31.524349
MIT
false
b5eca3748dd09585650f2416d008b2d3
from typing import Any, Dict, Optional, Sequence, Set, Tuple, Union\n\nfrom django.db.migrations.migration import Migration\nfrom django.db.migrations.state import ProjectState\n\nMIGRATIONS_MODULE_NAME: str\n\nclass MigrationLoader:\n connection: Any = ...\n disk_migrations: Dict[Tuple[str, str], Migration] = .....
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\migrations\loader.pyi
loader.pyi
Other
1,547
0.85
0.419355
0
vue-tools
631
2024-02-23T15:44:10.804566
GPL-3.0
false
a73c05c41660b1962f8c509739aed1b2
from typing import Any, List, Tuple\n\nfrom django.db.backends.base.schema import BaseDatabaseSchemaEditor\nfrom django.db.migrations.state import ProjectState\n\nclass Migration:\n operations: List[Any] = ...\n dependencies: List[Any] = ...\n run_before: List[Any] = ...\n replaces: List[Any] = ...\n ini...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\migrations\migration.pyi
migration.pyi
Other
1,064
0.85
0.285714
0
python-kit
867
2024-09-02T17:28:27.478223
GPL-3.0
false
3b006961f3aca4ee5f7606cb7ab635dc
from typing import List, Optional\n\nfrom django.db.migrations.operations.base import Operation\n\nclass MigrationOptimizer:\n def optimize(self, operations: List[Operation], app_label: Optional[str] = ...) -> List[Operation]: ...\n def optimize_inner(self, operations: List[Operation], app_label: Optional[str] = ...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\migrations\optimizer.pyi
optimizer.pyi
Other
343
0.85
0.428571
0
node-utils
854
2025-03-07T22:21:32.137573
GPL-3.0
false
6c77a53108c38c74a5a2d0d75e5dc95e
from typing import Any, Dict, Optional, Set\n\nfrom django.db.migrations.state import ModelState\n\nfrom django.db.models.fields import Field\n\nclass MigrationQuestioner:\n defaults: Dict[str, Any] = ...\n specified_apps: Set[str] = ...\n dry_run: Optional[bool] = ...\n def __init__(\n self,\n ...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\migrations\questioner.pyi
questioner.pyi
Other
1,156
0.85
0.423077
0
node-utils
12
2025-01-16T19:46:00.244355
MIT
false
901dd353ce6c96da5862eba0a68b4c7a
from typing import Any, Optional, Set, Tuple\n\nfrom django.db.backends.base.base import BaseDatabaseWrapper\nfrom django.db.models.query import QuerySet\n\nfrom django.db import models\n\nclass MigrationRecorder:\n class Migration(models.Model):\n app: Any = ...\n name: Any = ...\n applied: Any...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\migrations\recorder.pyi
recorder.pyi
Other
806
0.85
0.454545
0
python-kit
132
2025-03-30T17:09:07.580474
GPL-3.0
false
7b09852b3e17f52326f7f2e15b9a1e37
from typing import Any, Callable, Dict, List, Set, Tuple, Union, Type\n\nclass BaseSerializer:\n value: Any = ...\n def __init__(self, value: Any) -> None: ...\n def serialize(self) -> Any: ...\n\nclass BaseSequenceSerializer(BaseSerializer): ...\nclass BaseSimpleSerializer(BaseSerializer): ...\nclass Datetime...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\migrations\serializer.pyi
serializer.pyi
Other
1,828
0.85
0.717391
0
awesome-app
37
2025-01-29T04:45:51.822666
Apache-2.0
false
4b85acbb0f3b297bd6e23d8b164734fa
from typing import Any, Dict, Iterator, List, Optional, Sequence, Tuple, Type, Union, Set\n\nfrom django.apps import AppConfig\nfrom django.apps.registry import Apps\nfrom django.db.models.base import Model\nfrom django.db.models.manager import Manager\n\nfrom django.db.models.fields import Field\n\nclass AppConfigStub...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\migrations\state.pyi
state.pyi
Other
2,640
0.85
0.411765
0
python-kit
75
2023-08-10T19:14:50.575513
BSD-3-Clause
false
9449e3a10a4e8c1600510d6892055613
from typing import Dict, Iterator, List, Set\n\nfrom django.db.migrations.operations.base import Operation\n\ndef topological_sort_as_sets(dependency_graph: Dict[Operation, Set[Operation]]) -> Iterator[Set[Operation]]: ...\ndef stable_topological_sort(\n l: List[Operation], dependency_graph: Dict[Operation, Set[Oper...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\migrations\topological_sort.pyi
topological_sort.pyi
Other
348
0.85
0.25
0
python-kit
825
2024-03-07T06:45:53.649334
MIT
false
3b4b860085273bd0ae953e1874a6431f
from typing import Any\n\nCOMPILED_REGEX_TYPE: Any\n\nclass RegexObject:\n pattern: str = ...\n flags: int = ...\n def __init__(self, obj: Any) -> None: ...\n\ndef get_migration_name_timestamp() -> str: ...\n
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\migrations\utils.pyi
utils.pyi
Other
207
0.85
0.3
0
vue-tools
522
2023-12-01T12:34:52.789807
GPL-3.0
false
91b8c2391b2a0ac98da5241bbdc09285
from typing import Any, List, Set, Tuple, Union, Type\n\nfrom django.db.migrations.migration import Migration\nfrom django.db.migrations.operations.base import Operation\nfrom django.db.migrations.operations.models import CreateModel\nfrom django.db.migrations.serializer import BaseSerializer\n\nclass SettingsReference...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\migrations\writer.pyi
writer.pyi
Other
1,441
0.85
0.45
0
node-utils
364
2024-11-01T16:34:20.655299
MIT
false
7beb1d7b6dd31f37112a86c91cfbc810
# Stubs for django.db.migrations (Python 3.6)\n#\n# NOTE: This dynamically typed stub was automatically generated by stubgen.\n\nfrom .migration import Migration as Migration, swappable_dependency as swappable_dependency\nfrom .operations import *\n
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\migrations\__init__.pyi
__init__.pyi
Other
243
0.95
0.166667
0.6
python-kit
214
2024-12-28T14:31:47.899862
Apache-2.0
false
f51cc1807448ec4f0f6a7712aeb0968f
from typing import Any, List\n\nclass Operation:\n reversible: bool = ...\n reduces_to_sql: bool = ...\n atomic: bool = ...\n elidable: bool = ...\n serialization_expand_args: Any = ...\n def deconstruct(self): ...\n def state_forwards(self, app_label: Any, state: Any) -> None: ...\n def databas...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\migrations\operations\base.pyi
base.pyi
Other
902
0.85
0.588235
0
node-utils
995
2024-08-13T09:57:20.845541
MIT
false
9e5cb147b0c50ed48894da995d29a5ca
from typing import Any, Optional\n\nfrom django.db.models.fields import Field\nfrom .base import Operation\n\nclass FieldOperation(Operation):\n model_name: str = ...\n model_name_lower: str\n name: str = ...\n def __init__(self, model_name: str, name: str, field: Optional[Field] = ...) -> None: ...\n de...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\migrations\operations\fields.pyi
fields.pyi
Other
1,166
0.85
0.4375
0
vue-tools
949
2024-08-09T05:07:12.010036
Apache-2.0
false
375d9e60cb9b31d76161b347e37e63af
from typing import Any, Collection, Dict, List, Optional, Sequence, Tuple, Union\n\nfrom django.db.migrations.operations.base import Operation\nfrom django.db.models.indexes import Index\nfrom django.db.models.manager import Manager\n\nfrom django.db.models.constraints import BaseConstraint\nfrom django.db.models.field...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\migrations\operations\models.pyi
models.pyi
Other
3,154
0.85
0.402299
0
node-utils
228
2024-06-26T23:05:42.141873
Apache-2.0
false
230e05c0b4e7444e553eea056f64b1cc
from typing import Any, Callable, Dict, Optional, Sequence\n\nfrom django.db.backends.base.schema import BaseDatabaseSchemaEditor\nfrom django.db.migrations.state import StateApps\n\nfrom .base import Operation\n\nclass SeparateDatabaseAndState(Operation):\n database_operations: Sequence[Operation] = ...\n state_...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\migrations\operations\special.pyi
special.pyi
Other
1,340
0.85
0.162791
0
awesome-app
998
2025-04-30T08:54:15.979447
MIT
false
7ab9b45d55956c5c19fae69516a8b76f
from django.db.migrations.state import ProjectState\n\nfrom django.db.models.fields import Field\n\ndef is_referenced_by_foreign_key(state: ProjectState, model_name_lower: str, field: Field, field_name: str) -> bool: ...\n
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\migrations\operations\utils.pyi
utils.pyi
Other
217
0.85
0.2
0
node-utils
915
2023-09-26T10:14:18.985686
MIT
false
645b63f41325838760d2824ec917c463
from .fields import (\n AddField as AddField,\n AlterField as AlterField,\n RemoveField as RemoveField,\n RenameField as RenameField,\n)\nfrom .models import (\n AddIndex as AddIndex,\n AlterIndexTogether as AlterIndexTogether,\n AlterModelManagers as AlterModelManagers,\n AlterModelOptions as A...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\migrations\operations\__init__.pyi
__init__.pyi
Other
796
0.85
0
0
awesome-app
551
2023-09-05T20:18:08.977318
MIT
false
cb5d405be1dc88372f9390b75b935de3
from typing import Any, Optional\n\nfrom django.db.models.expressions import Func\n\nclass Aggregate(Func):\n filter_template: str = ...\n filter: Any = ...\n allow_distinct: bool = ...\n def __init__(self, *expressions: Any, distinct: bool = ..., filter: Optional[Any] = ..., **extra: Any) -> None: ...\n\nc...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\models\aggregates.pyi
aggregates.pyi
Other
501
0.85
0.529412
0
vue-tools
710
2024-07-03T16:55:33.514157
GPL-3.0
false
05c79c364207d43a7989d2a10e474f09
from typing import Any, Callable, Dict, List, Optional, Sequence, Set, Tuple, Type, TypeVar, Union, Collection, ClassVar\n\nfrom django.core.checks.messages import CheckMessage\nfrom django.core.exceptions import ValidationError\nfrom django.db.models.manager import BaseManager\nfrom django.db.models.options import Opt...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\models\base.pyi
base.pyi
Other
2,400
0.85
0.366667
0
python-kit
337
2024-09-10T13:54:59.920208
GPL-3.0
false
6edf7e79ce5e310fd601e1bc9bd491b6
from typing import Any, Optional, Sequence, Tuple, Type, TypeVar\n\nfrom django.db.backends.base.schema import BaseDatabaseSchemaEditor\nfrom django.db.models.base import Model\nfrom django.db.models.query_utils import Q\n\n_T = TypeVar("_T", bound="BaseConstraint")\n\nclass BaseConstraint:\n name: str\n def __in...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\models\constraints.pyi
constraints.pyi
Other
1,089
0.85
0.407407
0
react-lib
48
2025-02-26T07:49:03.134826
Apache-2.0
false
f3f2a7598af0ff92d0d769bb908450df
from typing import Any, Callable, Iterable, Optional, Union, Collection, Type\n\nfrom django.db.models.base import Model\n\nfrom django.db import IntegrityError\nfrom django.db.models.fields import Field\nfrom django.db.models.options import Options\n\ndef CASCADE(collector, field, sub_objs, using): ...\ndef SET_NULL(c...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\models\deletion.pyi
deletion.pyi
Other
1,149
0.85
0.466667
0.04
node-utils
582
2024-10-14T17:08:46.114290
GPL-3.0
false
c045c0837ec07b99f0bbf4d6f5b240b3
import enum\nfrom typing import Any, List, Tuple\n\nclass ChoicesMeta(enum.EnumMeta):\n names: List[str] = ...\n choices: List[Tuple[Any, str]] = ...\n labels: List[str] = ...\n values: List[Any] = ...\n def __contains__(self, item: Any) -> bool: ...\n\nclass Choices(enum.Enum, metaclass=ChoicesMeta):\n ...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\models\enums.pyi
enums.pyi
Other
814
0.95
0.266667
0.083333
vue-tools
509
2024-01-30T23:32:40.019220
BSD-3-Clause
false
3ec0268c63aa741ffe25cc51e72f6218
from datetime import datetime, timedelta\nfrom typing import Any, Callable, Dict, Iterator, List, Optional, Sequence, Set, Tuple, Type, TypeVar, Union, Iterable\n\nfrom django.db.models.lookups import Lookup\nfrom django.db.models.sql.compiler import SQLCompiler\n\nfrom django.db.models import Q, QuerySet\nfrom django....
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\models\expressions.pyi
expressions.pyi
Other
8,583
0.85
0.456621
0
vue-tools
398
2025-02-15T20:13:27.132551
Apache-2.0
false
ad5bb7ebbda489dd9ebbfc935a4ca370
from typing import Any, List, Optional, Sequence, Tuple, Type\n\nfrom django.db.backends.base.schema import BaseDatabaseSchemaEditor\nfrom django.db.backends.ddl_references import Statement\nfrom django.db.models.base import Model\nfrom django.db.models.query_utils import Q\n\nclass Index:\n model: Type[Model]\n ...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\models\indexes.pyi
indexes.pyi
Other
1,241
0.85
0.235294
0.03125
vue-tools
141
2025-04-10T19:21:53.251381
GPL-3.0
false
7454155035b2df8847f38571d096370e
from datetime import datetime\nfrom typing import Any, Iterable, List, Optional, Tuple, Type, Union, Mapping, TypeVar, Generic\n\nfrom django.db.backends.sqlite3.base import DatabaseWrapper\nfrom django.db.models.expressions import Expression, Func\nfrom django.db.models.query_utils import RegisterLookupMixin\nfrom dja...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\models\lookups.pyi
lookups.pyi
Other
4,475
0.85
0.567308
0
react-lib
513
2025-03-03T07:01:49.245117
Apache-2.0
false
0199c1c846e4c902fe1bd43188b8ccd5
from typing import Any, Dict, List, Optional, Tuple, Type, TypeVar, Iterable, Union\n\nfrom django.db.models.base import Model\nfrom django.db.models.query import QuerySet\n\n_T = TypeVar("_T", bound=Model, covariant=True)\n_M = TypeVar("_M", bound="BaseManager")\n\nclass BaseManager(QuerySet[_T]):\n creation_counte...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\models\manager.pyi
manager.pyi
Other
1,796
0.85
0.444444
0
react-lib
995
2024-10-21T18:40:10.763391
MIT
false
0211d56db8957d0a6a97f5c4a6b4ca84
import collections\nfrom typing import Any, Callable, Dict, Generic, Iterator, List, Optional, Sequence, Tuple, Type, TypeVar, Union\n\nfrom django.apps.config import AppConfig\nfrom django.apps.registry import Apps\nfrom django.contrib.contenttypes.fields import GenericForeignKey\nfrom django.contrib.postgres.fields.a...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\models\options.pyi
options.pyi
Other
4,993
0.85
0.227642
0
python-kit
781
2024-07-11T05:42:10.188425
Apache-2.0
false
169d9db779eb4024e10cbd80b9cc830f
import datetime\nfrom typing import (\n Any,\n Collection,\n Dict,\n Generic,\n Iterable,\n Iterator,\n List,\n MutableMapping,\n Optional,\n Sequence,\n Sized,\n Tuple,\n Type,\n TypeVar,\n Union,\n overload,\n Reversible,\n)\n\nfrom django.db.models.base import Model...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\models\query.pyi
query.pyi
Other
9,202
0.95
0.516432
0.025126
react-lib
616
2025-02-08T10:49:47.113866
BSD-3-Clause
false
2de573ff118c5c9f9216e617d8ab13ea
from collections import namedtuple\nfrom typing import Any, Collection, Dict, Iterator, List, Mapping, Optional, Sequence, Set, Tuple, Type\n\nfrom django.db.models.base import Model\nfrom django.db.models.fields.mixins import FieldCacheMixin\nfrom django.db.models.sql.compiler import SQLCompiler\nfrom django.db.models...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\models\query_utils.pyi
query_utils.pyi
Other
3,011
0.85
0.367089
0
awesome-app
790
2023-10-23T14:34:23.371130
BSD-3-Clause
false
50b48ce3ebe9e158f5155fe484698961
from typing import Any, Callable, Optional, Type, Union\n\nfrom django.apps.registry import Apps\nfrom django.db.models.base import Model\nfrom django.dispatch import Signal\n\nclass_prepared: Any\n\nclass ModelSignal(Signal):\n def connect( # type: ignore\n self,\n receiver: Callable,\n sender...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\models\signals.pyi
signals.pyi
Other
850
0.95
0.088235
0
awesome-app
568
2024-03-21T18:20:07.223925
BSD-3-Clause
false
e0294595fdcff050c46a282f2d78832f
from typing import Tuple, Type, Union\n\nfrom django.db.models.base import Model\n\ndef make_model_tuple(model: Union[Type[Model], str]) -> Tuple[str, str]: ...\n
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\models\utils.pyi
utils.pyi
Other
157
0.85
0.2
0
node-utils
572
2024-04-16T06:49:16.734987
BSD-3-Clause
false
aec69e27fb04b18e9b090c87aacc9480
from .base import Model as Model\n\nfrom .aggregates import (\n Aggregate as Aggregate,\n Avg as Avg,\n Count as Count,\n Max as Max,\n Min as Min,\n StdDev as StdDev,\n Sum as Sum,\n Variance as Variance,\n)\n\nfrom .fields import (\n FieldDoesNotExist as FieldDoesNotExist,\n AutoField as...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\models\__init__.pyi
__init__.pyi
Other
3,576
0.85
0
0
vue-tools
271
2025-04-22T23:04:08.360101
BSD-3-Clause
false
a8a111ef9fe37d17481832d6607bf6dd
from pathlib import Path\nfrom typing import Any, Callable, Iterable, Optional, Type, TypeVar, Union, overload\n\nfrom django.core.files.base import File\nfrom django.core.files.images import ImageFile\nfrom django.core.files.storage import FileSystemStorage, Storage\nfrom django.db.models.base import Model\n\nfrom dja...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\models\fields\files.pyi
files.pyi
Other
3,640
0.95
0.29703
0.076087
node-utils
397
2024-02-27T12:29:56.716856
Apache-2.0
false
2df64a6e3128fcf39e802109220581a8
from typing import Any, Optional\n\nfrom django.db.models.base import Model\n\nNOT_PROVIDED: Any\n\nclass FieldCacheMixin:\n def get_cache_name(self) -> str: ...\n def get_cached_value(self, instance: Model, default: Any = ...) -> Optional[Model]: ...\n def is_cached(self, instance: Model) -> bool: ...\n de...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\models\fields\mixins.pyi
mixins.pyi
Other
453
0.85
0.5
0
awesome-app
826
2024-02-17T00:42:22.773179
MIT
false
993637eb935643faef5c1aa250dcf899
from typing import Any\n\nfrom django.db.models import fields\n\nclass OrderWrt(fields.IntegerField):\n def __init__(self, *args: Any, **kwargs: Any) -> None: ...\n
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\models\fields\proxy.pyi
proxy.pyi
Other
161
0.85
0.333333
0
awesome-app
186
2024-03-07T09:05:53.142281
BSD-3-Clause
false
43fafa0f55e76833a60d79c8b50b7280
from typing import Any, Callable, Dict, Iterable, List, Optional, Sequence, Tuple, Type, TypeVar, Union, overload\nfrom uuid import UUID\n\nfrom django.db import models\nfrom django.db.models.base import Model\nfrom django.db.models.fields import Field\nfrom django.db.models.query_utils import Q, PathInfo\nfrom django....
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\models\fields\related.pyi
related.pyi
Other
9,289
0.95
0.160494
0.047619
vue-tools
422
2023-09-28T12:28:06.440724
BSD-3-Clause
false
09d7b555283cad28b7a558f7168547d7
from typing import Any, Callable, List, Optional, Tuple, Type, Union, Generic, TypeVar\n\nfrom django.core.exceptions import ObjectDoesNotExist\nfrom django.db.models.base import Model\nfrom django.db.models.fields.mixins import FieldCacheMixin\nfrom django.db.models.fields.related import RelatedField, OneToOneField\nf...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\models\fields\related_descriptors.pyi
related_descriptors.pyi
Other
3,184
0.85
0.457143
0
awesome-app
575
2024-03-10T17:54:37.416324
Apache-2.0
false
5978410eeb195bb3229ed622719ef3d3
from collections import OrderedDict\nfrom typing import Any, List, Tuple, Type, Iterable\n\nfrom django.db.models.expressions import Expression\nfrom django.db.models.lookups import (\n BuiltinLookup,\n Exact,\n GreaterThan,\n GreaterThanOrEqual,\n In,\n IsNull,\n LessThan,\n LessThanOrEqual,\n)...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\models\fields\related_lookups.pyi
related_lookups.pyi
Other
1,500
0.85
0.3125
0
python-kit
747
2025-01-16T22:00:02.750327
MIT
false
e329eee525e2c04452d43e4f75de7bfa
from typing import Any, Callable, Dict, List, Optional, Tuple, Type, Union\n\nfrom django.db.models.base import Model\nfrom django.db.models.fields.related import ForeignKey, OneToOneField, RelatedField\nfrom django.db.models.lookups import BuiltinLookup, StartsWith\nfrom django.db.models.query_utils import FilteredRel...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\models\fields\reverse_related.pyi
reverse_related.pyi
Other
4,045
0.85
0.218182
0
react-lib
50
2024-08-05T05:39:47.649999
Apache-2.0
false
3ca22e889a905c759277b228b7b27a8c
import decimal\nimport uuid\nfrom datetime import date, datetime, time, timedelta\nfrom typing import (\n Any,\n Callable,\n Dict,\n Generic,\n Iterable,\n Optional,\n Tuple,\n Type,\n TypeVar,\n Union,\n Sequence,\n List,\n overload,\n)\n\nfrom django.core import checks\n\nfrom d...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\models\fields\__init__.pyi
__init__.pyi
Other
13,788
0.95
0.168704
0.023936
python-kit
720
2025-02-11T15:44:41.895454
MIT
false
4982f0bd56caeb3b7fb5a5b7ff356f17
from typing import Any, Union\n\nfrom django.db.models import Func\nfrom django.db.models.fields import Field\n\nclass Cast(Func):\n def __init__(self, expression: Any, output_field: Union[str, Field]) -> None: ...\n\nclass Coalesce(Func): ...\nclass Greatest(Func): ...\nclass Least(Func): ...\nclass NullIf(Func): ....
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\models\functions\comparison.pyi
comparison.pyi
Other
312
0.85
0.5
0
node-utils
294
2023-07-11T14:52:27.200870
GPL-3.0
false
a6d215cfcf3354ad28a4f05776cace26
from typing import Any, Optional\n\nfrom django.db.models import Func, Transform\n\nclass TimezoneMixin:\n tzinfo: Any = ...\n def get_tzname(self) -> Optional[str]: ...\n\nclass Extract(TimezoneMixin, Transform): ...\nclass ExtractYear(Extract): ...\nclass ExtractIsoYear(Extract): ...\nclass ExtractMonth(Extract...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\models\functions\datetime.pyi
datetime.pyi
Other
972
0.85
0.8125
0
react-lib
679
2024-07-27T22:24:27.892523
BSD-3-Clause
false
9ac7a7b13b0e27907bc1e166083fcf27
from django.db.models.expressions import Func\nfrom django.db.models.functions.mixins import FixDecimalInputMixin, NumericOutputFieldMixin\nfrom django.db.models.lookups import Transform\n\nclass Abs(Transform): ...\nclass ACos(NumericOutputFieldMixin, Transform): ...\nclass ASin(NumericOutputFieldMixin, Transform): .....
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\models\functions\math.pyi
math.pyi
Other
1,222
0.85
0.846154
0
vue-tools
461
2025-02-17T03:12:10.444645
GPL-3.0
false
cc1fc0194db36419e00905c9d6f82290
class FixDecimalInputMixin: ...\nclass FixDurationInputMixin: ...\nclass NumericOutputFieldMixin: ...\n
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\models\functions\mixins.pyi
mixins.pyi
Other
100
0.85
1
0
vue-tools
234
2023-09-29T19:33:08.440389
GPL-3.0
false
753412565e91b635b05f00d03f7cbdbb
from typing import Any, List, Optional, Tuple, Union\n\nfrom django.db.backends.sqlite3.base import DatabaseWrapper\nfrom django.db.models.expressions import Combinable, Expression, Value\nfrom django.db.models.sql.compiler import SQLCompiler\n\nfrom django.db.models import Func, Transform\n\nclass BytesToCharFieldConv...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\models\functions\text.pyi
text.pyi
Other
2,228
0.85
0.553846
0.019608
awesome-app
661
2024-04-20T06:44:54.648714
BSD-3-Clause
false
cfa1cf5991fc0be6ee8b5341aa0aa1ed
from typing import Any, Optional\n\nfrom django.db.models import Func\n\nclass CumeDist(Func): ...\nclass DenseRank(Func): ...\nclass FirstValue(Func): ...\n\nclass LagLeadFunction(Func):\n def __init__(\n self, expression: Optional[str], offset: int = ..., default: Optional[int] = ..., **extra: Any\n ) ->...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\models\functions\window.pyi
window.pyi
Other
702
0.85
0.576923
0
python-kit
574
2025-02-20T15:18:18.632797
GPL-3.0
false
cf3aca9e5abcffe04bb18aadfe2bbb38
from .text import (\n Lower as Lower,\n Upper as Upper,\n Length as Length,\n Chr as Chr,\n Concat as Concat,\n ConcatPair as ConcatPair,\n Left as Left,\n Right as Right,\n LPad as LPad,\n RPad as RPad,\n LTrim as LTrim,\n RTrim as RTrim,\n Trim as Trim,\n Ord as Ord,\n Rep...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\models\functions\__init__.pyi
__init__.pyi
Other
2,077
0.85
0
0
react-lib
929
2023-11-06T00:05:13.929708
GPL-3.0
false
fafcc0fee56e3f2cf6c2fa25f4b937ce
from datetime import date, datetime\nfrom decimal import Decimal\nfrom itertools import chain\nfrom typing import Any, Callable, Dict, Iterator, List, Optional, Set, Tuple, Type, Union\nfrom uuid import UUID\n\nfrom django.db.models.base import Model\nfrom django.db.models.expressions import BaseExpression, Expression\...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\models\sql\compiler.pyi
compiler.pyi
Other
4,712
0.85
0.256881
0
react-lib
349
2024-10-23T06:47:56.837599
Apache-2.0
false
a6a572bd05ee2b9a937b49ddc958b320
from typing import Dict, Pattern, Tuple\n\nGET_ITERATOR_CHUNK_SIZE: int = ...\n\nMULTI: str = ...\nSINGLE: str = ...\nCURSOR: str = ...\nNO_RESULTS: str = ...\n\nORDER_PATTERN: Pattern = ...\nORDER_DIR: Dict[str, Tuple[str, str]] = ...\n\nINNER: str = ...\nLOUTER: str = ...\n
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\models\sql\constants.pyi
constants.pyi
Other
262
0.85
0
0
python-kit
688
2025-03-25T11:46:05.392972
BSD-3-Clause
false
65c632f5d9d4a8464addfb6289bb32e0
from collections import OrderedDict\nfrom typing import Any, Dict, List, Optional, Tuple, Union\n\nfrom django.db.models.fields.mixins import FieldCacheMixin\nfrom django.db.models.query_utils import FilteredRelation, PathInfo\nfrom django.db.models.sql.compiler import SQLCompiler\n\nclass MultiJoin(Exception):\n le...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\models\sql\datastructures.pyi
datastructures.pyi
Other
1,909
0.85
0.306122
0
vue-tools
801
2024-10-31T19:12:43.813469
BSD-3-Clause
false
73ea391215dbdd8438143d3d0de8885c
import collections\nfrom collections import OrderedDict, namedtuple\nfrom typing import Any, Callable, Dict, Iterator, List, Optional, Sequence, Set, Tuple, Type, Union, Iterable\n\nfrom django.db.models.lookups import Lookup, Transform\nfrom django.db.models.query_utils import PathInfo, RegisterLookupMixin\nfrom djang...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\models\sql\query.pyi
query.pyi
Other
9,072
0.85
0.407216
0
awesome-app
481
2025-06-08T15:12:46.491822
Apache-2.0
false
cc806caab7e7fbb8b23f1eb05e9b9ac7
from typing import Any, Dict, Iterable, List, Optional, Tuple, Type, Union\n\nfrom django.db.models.base import Model\nfrom django.db.models.expressions import Case\nfrom django.db.models.query import QuerySet\nfrom django.db.models.sql.query import Query\nfrom django.db.models.sql.where import WhereNode\n\nfrom django...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\models\sql\subqueries.pyi
subqueries.pyi
Other
1,828
0.85
0.355556
0
awesome-app
858
2024-02-01T23:44:12.511593
BSD-3-Clause
false
a9420bcf33dfe3a123e86e54f0434035
from collections import OrderedDict\nfrom typing import Any, Dict, List, Optional, Tuple, Union\n\nfrom django.db.models.expressions import Expression\nfrom django.db.models.sql.compiler import SQLCompiler\nfrom django.db.models.sql.query import Query\nfrom django.utils import tree\n\nAND: str\nOR: str\n\nclass WhereNo...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\models\sql\where.pyi
where.pyi
Other
1,918
0.85
0.347826
0
node-utils
650
2024-09-18T20:43:50.073027
MIT
false
7955741b7dc5e4084cb642fe7d683844
from .query import Query as Query, RawQuery as RawQuery\n\nfrom .subqueries import (\n InsertQuery as InsertQuery,\n AggregateQuery as AggregateQuery,\n DeleteQuery as DeleteQuery,\n UpdateQuery as UpdateQuery,\n)\n
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\db\models\sql\__init__.pyi
__init__.pyi
Other
219
0.85
0
0
python-kit
110
2024-03-03T17:38:41.903169
MIT
false
1388c5a839af8ae8898713856aa4a9ec
from typing import Any, Callable, List, Optional, Tuple, Union\n\nNONE_ID: Any\nNO_RECEIVERS: Any\n\nclass Signal:\n receivers: Any = ...\n providing_args: Any = ...\n lock: Any = ...\n use_caching: Any = ...\n sender_receivers_cache: Any = ...\n def __init__(self, providing_args: List[str] = ..., use...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\dispatch\dispatcher.pyi
dispatcher.pyi
Other
994
0.85
0.347826
0
react-lib
352
2023-10-05T20:20:22.765991
Apache-2.0
false
598ac02bcc958c360334defaf19d8a27
from django.dispatch.dispatcher import Signal as Signal, receiver as receiver\n
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\dispatch\__init__.pyi
__init__.pyi
Other
78
0.65
0
0
awesome-app
444
2025-03-04T23:15:25.701210
Apache-2.0
false
ef76e5dc1d730f88a40c574e68622980
from typing import Any, Dict, List, Optional, Union\n\nfrom django.forms.fields import Field\nfrom django.forms.forms import BaseForm\nfrom django.forms.renderers import DjangoTemplates\nfrom django.forms.utils import ErrorList\nfrom django.forms.widgets import Widget\nfrom django.utils.safestring import SafeText\n\ncl...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\forms\boundfield.pyi
boundfield.pyi
Other
2,308
0.85
0.433333
0
python-kit
993
2023-10-28T03:03:48.028200
Apache-2.0
false
d22a7d4a8f7859c8741ec077b5aacd1d
from datetime import datetime, timedelta\nfrom typing import Any, Callable, Iterable, List, Optional, Pattern, Sequence, Tuple, Type, Union\n\nfrom django.core.validators import BaseValidator\nfrom django.forms.boundfield import BoundField\nfrom django.forms.forms import BaseForm\nfrom django.forms.widgets import Widge...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\forms\fields.pyi
fields.pyi
Other
13,037
0.85
0.159898
0.005435
node-utils
52
2023-07-23T20:03:30.288869
BSD-3-Clause
false
ffb78086e6976fa3c46bb8af0d9e8608
from typing import Any, Dict, Iterator, List, Mapping, Optional, Sequence, Type, Union\n\nfrom django.core.exceptions import ValidationError as ValidationError\nfrom django.core.files import uploadedfile\nfrom django.forms.boundfield import BoundField\nfrom django.forms.fields import Field\nfrom django.forms.renderers ...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\forms\forms.pyi
forms.pyi
Other
3,096
0.85
0.358974
0
react-lib
189
2024-05-01T01:23:07.338474
BSD-3-Clause
false
eaa69c64b820335b8a24cf0aba49b166
from typing import Any, Dict, Mapping, Optional, Sequence, Sized\n\nfrom django.forms import Form\n\nTOTAL_FORM_COUNT: str = ...\nINITIAL_FORM_COUNT: str = ...\nMIN_NUM_FORM_COUNT: str = ...\nMAX_NUM_FORM_COUNT: str = ...\nORDERING_FIELD_NAME: str = ...\nDELETION_FIELD_NAME: str = ...\n\nDEFAULT_MIN_NUM: int = ...\nDEF...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\forms\formsets.pyi
formsets.pyi
Other
2,397
0.85
0.393258
0
react-lib
387
2024-08-10T03:27:41.701494
Apache-2.0
false
a12f35ea1bd628e4b0c1a6af03ca8fa8
from datetime import datetime\nfrom typing import (\n Any,\n Callable,\n Dict,\n Iterator,\n List,\n Mapping,\n MutableMapping,\n Optional,\n Sequence,\n Tuple,\n Type,\n Union,\n ClassVar,\n Container,\n TypeVar,\n)\nfrom unittest.mock import MagicMock\nfrom uuid import UUI...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\forms\models.pyi
models.pyi
Other
10,173
0.85
0.186851
0.022305
react-lib
0
2024-11-21T17:16:23.832803
Apache-2.0
false
90dea0f25beacb6b85559ae1b0c24cf7
from typing import Any, Dict\n\nfrom django.template.backends.base import BaseEngine\n\nfrom django.template import Template\n\nROOT: Any\n\ndef get_default_renderer() -> DjangoTemplates: ...\n\nclass BaseRenderer:\n def get_template(self, template_name: str) -> Any: ...\n def render(self, template_name: str, con...
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\forms\renderers.pyi
renderers.pyi
Other
724
0.85
0.423077
0
vue-tools
896
2025-06-18T01:08:46.288344
Apache-2.0
false
8c0213311fbe61907a44a71904a51644
from collections import UserList\nfrom datetime import datetime\nfrom typing import Any, Dict, List, Optional, Sequence, Union\n\nfrom django.core.exceptions import ValidationError\nfrom django.utils.safestring import SafeText\n\ndef pretty_name(name: str) -> str: ...\ndef flatatt(attrs: Dict[str, Any]) -> SafeText: .....
.venv\Lib\site-packages\jedi\third_party\django-stubs\django-stubs\forms\utils.pyi
utils.pyi
Other
1,257
0.85
0.515152
0
awesome-app
629
2023-11-01T20:57:22.853556
BSD-3-Clause
false
5135d66dd39256272adbd89014bf8e80