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 __future__ import annotations\n\nimport sys\nfrom collections.abc import Awaitable, Callable, Generator\nfrom concurrent.futures import Future\nfrom contextlib import (\n AbstractAsyncContextManager,\n AbstractContextManager,\n contextmanager,\n)\nfrom dataclasses import dataclass, field\nfrom inspect imp...
.venv\Lib\site-packages\anyio\from_thread.py
from_thread.py
Python
17,478
0.95
0.176471
0.032333
react-lib
44
2023-11-19T16:36:49.076220
Apache-2.0
false
06e3d352e59700b98f4de32dff5e16bd
from __future__ import annotations\n\nimport enum\nfrom dataclasses import dataclass\nfrom typing import Any, Generic, Literal, TypeVar, overload\nfrom weakref import WeakKeyDictionary\n\nfrom ._core._eventloop import get_async_backend\n\nT = TypeVar("T")\nD = TypeVar("D")\n\n\nasync def checkpoint() -> None:\n """\...
.venv\Lib\site-packages\anyio\lowlevel.py
lowlevel.py
Python
4,169
0.85
0.192547
0
awesome-app
617
2023-07-15T10:24:16.442314
GPL-3.0
false
468ad2c6bbf0771f368381f7c274a001
from __future__ import annotations\n\nimport os\nimport pickle\nimport subprocess\nimport sys\nfrom collections import deque\nfrom collections.abc import Callable\nfrom importlib.util import module_from_spec, spec_from_file_location\nfrom typing import TypeVar, cast\n\nfrom ._core._eventloop import current_time, get_as...
.venv\Lib\site-packages\anyio\to_process.py
to_process.py
Python
9,595
0.95
0.151163
0.054545
node-utils
450
2025-03-23T07:34:23.613655
BSD-3-Clause
false
03a3cd1b4080e9ff10902c65f506f701
from __future__ import annotations\n\nimport sys\nfrom collections.abc import Callable\nfrom typing import TypeVar\nfrom warnings import warn\n\nfrom ._core._eventloop import get_async_backend\nfrom .abc import CapacityLimiter\n\nif sys.version_info >= (3, 11):\n from typing import TypeVarTuple, Unpack\nelse:\n f...
.venv\Lib\site-packages\anyio\to_thread.py
to_thread.py
Python
2,396
0.85
0.15942
0.018182
node-utils
469
2024-10-29T14:25:08.744227
Apache-2.0
false
f5f64e08cf3df8fe19549d9f45981ed9
from __future__ import annotations\n\nfrom ._core._eventloop import current_time as current_time\nfrom ._core._eventloop import get_all_backends as get_all_backends\nfrom ._core._eventloop import get_cancelled_exc_class as get_cancelled_exc_class\nfrom ._core._eventloop import run as run\nfrom ._core._eventloop import ...
.venv\Lib\site-packages\anyio\__init__.py
__init__.py
Python
4,993
0.95
0.023529
0.012195
python-kit
242
2023-08-04T23:11:02.886265
GPL-3.0
false
895c01b62412506433227ecba7922199
from __future__ import annotations\n\nimport math\nimport sys\nfrom abc import ABCMeta, abstractmethod\nfrom collections.abc import AsyncIterator, Awaitable, Callable, Sequence\nfrom contextlib import AbstractContextManager\nfrom os import PathLike\nfrom signal import Signals\nfrom socket import AddressFamily, SocketKi...
.venv\Lib\site-packages\anyio\abc\_eventloop.py
_eventloop.py
Python
9,682
0.85
0.156915
0.012579
vue-tools
192
2023-10-10T23:46:07.336820
MIT
false
ffdec49aea93c083191b32bd697d6d17
from __future__ import annotations\n\nfrom abc import ABCMeta, abstractmethod\nfrom types import TracebackType\nfrom typing import TypeVar\n\nT = TypeVar("T")\n\n\nclass AsyncResource(metaclass=ABCMeta):\n """\n Abstract base class for all closeable asynchronous resources.\n\n Works as an asynchronous context ...
.venv\Lib\site-packages\anyio\abc\_resources.py
_resources.py
Python
783
0.85
0.181818
0
node-utils
545
2024-07-17T05:21:02.641721
MIT
false
50e97e20c6a15b00c62ed92dd538bab2
from __future__ import annotations\n\nimport socket\nfrom abc import abstractmethod\nfrom collections.abc import Callable, Collection, Mapping\nfrom contextlib import AsyncExitStack\nfrom io import IOBase\nfrom ipaddress import IPv4Address, IPv6Address\nfrom socket import AddressFamily\nfrom types import TracebackType\...
.venv\Lib\site-packages\anyio\abc\_sockets.py
_sockets.py
Python
6,262
0.95
0.195876
0.053691
node-utils
236
2024-08-08T12:06:09.933983
MIT
false
8658545a0a8a38c8fe6593d49ce60265
from __future__ import annotations\n\nfrom abc import abstractmethod\nfrom collections.abc import Callable\nfrom typing import Any, Generic, TypeVar, Union\n\nfrom .._core._exceptions import EndOfStream\nfrom .._core._typedattr import TypedAttributeProvider\nfrom ._resources import AsyncResource\nfrom ._tasks import Ta...
.venv\Lib\site-packages\anyio\abc\_streams.py
_streams.py
Python
6,598
0.95
0.221675
0.03871
node-utils
689
2023-08-08T20:10:58.440817
GPL-3.0
false
618c0ef06fd9a87c7ea1e8970657a99a
from __future__ import annotations\n\nfrom abc import abstractmethod\nfrom signal import Signals\n\nfrom ._resources import AsyncResource\nfrom ._streams import ByteReceiveStream, ByteSendStream\n\n\nclass Process(AsyncResource):\n """An asynchronous version of :class:`subprocess.Popen`."""\n\n @abstractmethod\n ...
.venv\Lib\site-packages\anyio\abc\_subprocesses.py
_subprocesses.py
Python
2,067
0.85
0.189873
0
node-utils
274
2023-08-26T01:06:31.811877
BSD-3-Clause
false
26fabd1bbe7ed971bb359e97df2d1254
from __future__ import annotations\n\nimport sys\nfrom abc import ABCMeta, abstractmethod\nfrom collections.abc import Awaitable, Callable\nfrom types import TracebackType\nfrom typing import TYPE_CHECKING, Any, Protocol, TypeVar, overload\n\nif sys.version_info >= (3, 11):\n from typing import TypeVarTuple, Unpack\...
.venv\Lib\site-packages\anyio\abc\_tasks.py
_tasks.py
Python
3,080
0.85
0.207921
0.037975
vue-tools
431
2023-08-13T03:17:13.168335
GPL-3.0
false
aec0b627fee8beaede570c62aefab408
from __future__ import annotations\n\nimport types\nfrom abc import ABCMeta, abstractmethod\nfrom collections.abc import AsyncGenerator, Callable, Coroutine, Iterable\nfrom typing import Any, TypeVar\n\n_T = TypeVar("_T")\n\n\nclass TestRunner(metaclass=ABCMeta):\n """\n Encapsulates a running event loop. Every c...
.venv\Lib\site-packages\anyio\abc\_testing.py
_testing.py
Python
1,821
0.85
0.215385
0
awesome-app
445
2024-09-08T16:52:02.392341
Apache-2.0
true
8dd006396d407f0e7ab0e8223a0888d4
from __future__ import annotations\n\nfrom ._eventloop import AsyncBackend as AsyncBackend\nfrom ._resources import AsyncResource as AsyncResource\nfrom ._sockets import ConnectedUDPSocket as ConnectedUDPSocket\nfrom ._sockets import ConnectedUNIXDatagramSocket as ConnectedUNIXDatagramSocket\nfrom ._sockets import IPAd...
.venv\Lib\site-packages\anyio\abc\__init__.py
__init__.py
Python
2,652
0.95
0.054545
0.058824
python-kit
386
2024-01-04T21:14:49.888296
GPL-3.0
false
7060ac9ce76d907c20f5e0e8c805fd83
\n\n
.venv\Lib\site-packages\anyio\abc\__pycache__\_eventloop.cpython-313.pyc
_eventloop.cpython-313.pyc
Other
14,751
0.95
0.056452
0.004237
node-utils
888
2024-03-23T03:44:35.297957
Apache-2.0
false
5fb98562a9c18acf00d5b688489ab875
\n\n
.venv\Lib\site-packages\anyio\abc\__pycache__\_resources.cpython-313.pyc
_resources.cpython-313.pyc
Other
1,667
0.95
0.08
0
awesome-app
7
2024-08-31T16:06:24.514678
GPL-3.0
false
f326b3c47d9220721bccfb20018c43c2
\n\n
.venv\Lib\site-packages\anyio\abc\__pycache__\_sockets.cpython-313.pyc
_sockets.cpython-313.pyc
Other
9,774
0.8
0.075472
0
awesome-app
999
2023-11-23T05:23:30.628053
BSD-3-Clause
false
a86798d82a5461cc3fbf08d4c167e04f
\n\n
.venv\Lib\site-packages\anyio\abc\__pycache__\_streams.cpython-313.pyc
_streams.cpython-313.pyc
Other
8,342
0.8
0.141509
0
python-kit
292
2023-12-14T09:37:57.624810
MIT
false
f4eeafd8063c4abd02154050b855c02b
\n\n
.venv\Lib\site-packages\anyio\abc\__pycache__\_subprocesses.cpython-313.pyc
_subprocesses.cpython-313.pyc
Other
3,156
0.8
0.1
0
vue-tools
393
2024-11-07T04:34:18.719364
BSD-3-Clause
false
87b4f47dc44537da68e355c569af823e
\n\n
.venv\Lib\site-packages\anyio\abc\__pycache__\_tasks.cpython-313.pyc
_tasks.cpython-313.pyc
Other
4,414
0.95
0.140845
0.032258
python-kit
658
2024-12-06T10:07:59.037793
MIT
false
50d19c90d411aaf03391d6caadbb7060
\n\n
.venv\Lib\site-packages\anyio\abc\__pycache__\_testing.cpython-313.pyc
_testing.cpython-313.pyc
Other
2,771
0.85
0.195122
0
react-lib
240
2024-10-26T01:53:59.338579
BSD-3-Clause
true
3f79d24a1297ccab55a77d8b94dc1cb8
\n\n
.venv\Lib\site-packages\anyio\abc\__pycache__\__init__.cpython-313.pyc
__init__.cpython-313.pyc
Other
2,240
0.8
0
0
python-kit
477
2025-01-03T22:29:47.470591
MIT
false
a9e2ab7b27ebd7372fa5e379bea2014f
from __future__ import annotations\n\nfrom collections.abc import Callable, Mapping\nfrom dataclasses import dataclass, field\nfrom typing import Any\n\nfrom .. import ClosedResourceError, DelimiterNotFound, EndOfStream, IncompleteRead\nfrom ..abc import AnyByteReceiveStream, ByteReceiveStream\n\n\n@dataclass(eq=False)...
.venv\Lib\site-packages\anyio\streams\buffered.py
buffered.py
Python
4,500
0.95
0.201681
0.071429
awesome-app
359
2024-05-03T14:22:18.903010
BSD-3-Clause
false
5e0b5884fbe6ded9dab3ae4288fb2fac
from __future__ import annotations\n\nfrom collections.abc import Callable, Mapping\nfrom io import SEEK_SET, UnsupportedOperation\nfrom os import PathLike\nfrom pathlib import Path\nfrom typing import Any, BinaryIO, cast\n\nfrom .. import (\n BrokenResourceError,\n ClosedResourceError,\n EndOfStream,\n Typ...
.venv\Lib\site-packages\anyio\streams\file.py
file.py
Python
4,383
0.95
0.195946
0.027027
vue-tools
993
2025-04-01T15:08:18.335901
Apache-2.0
false
5deb64edb8a243176cc1095d34dd7f1e
from __future__ import annotations\n\nimport warnings\nfrom collections import OrderedDict, deque\nfrom dataclasses import dataclass, field\nfrom types import TracebackType\nfrom typing import Generic, NamedTuple, TypeVar\n\nfrom .. import (\n BrokenResourceError,\n ClosedResourceError,\n EndOfStream,\n Wou...
.venv\Lib\site-packages\anyio\streams\memory.py
memory.py
Python
10,560
0.95
0.198738
0.031621
awesome-app
640
2023-09-18T10:54:24.992166
GPL-3.0
false
2101b046f9c2bb28cfe9c6ff888a19c8
from __future__ import annotations\n\nfrom collections.abc import Callable, Mapping, Sequence\nfrom dataclasses import dataclass\nfrom typing import Any, Generic, TypeVar\n\nfrom ..abc import (\n ByteReceiveStream,\n ByteSendStream,\n ByteStream,\n Listener,\n ObjectReceiveStream,\n ObjectSendStream,\...
.venv\Lib\site-packages\anyio\streams\stapled.py
stapled.py
Python
4,302
0.95
0.156028
0.038095
vue-tools
195
2024-09-07T12:33:54.793916
GPL-3.0
false
66228731bd182fb136250c1aad54d67d
from __future__ import annotations\n\nimport codecs\nfrom collections.abc import Callable, Mapping\nfrom dataclasses import InitVar, dataclass, field\nfrom typing import Any\n\nfrom ..abc import (\n AnyByteReceiveStream,\n AnyByteSendStream,\n AnyByteStream,\n ObjectReceiveStream,\n ObjectSendStream,\n ...
.venv\Lib\site-packages\anyio\streams\text.py
text.py
Python
5,094
0.95
0.197279
0.017544
awesome-app
644
2024-03-06T01:23:05.295403
MIT
false
608291cc437db1dbe5e4190f21ae9002
from __future__ import annotations\n\nimport logging\nimport re\nimport ssl\nimport sys\nfrom collections.abc import Callable, Mapping\nfrom dataclasses import dataclass\nfrom functools import wraps\nfrom typing import Any, TypeVar\n\nfrom .. import (\n BrokenResourceError,\n EndOfStream,\n aclose_forcefully,\...
.venv\Lib\site-packages\anyio\streams\tls.py
tls.py
Python
13,199
0.95
0.170455
0.097643
awesome-app
761
2023-10-12T10:00:47.851272
BSD-3-Clause
false
938577f69784afc6be5a77db3eb1a036
\n\n
.venv\Lib\site-packages\anyio\streams\__pycache__\buffered.cpython-313.pyc
buffered.cpython-313.pyc
Other
6,092
0.8
0.056338
0
react-lib
115
2023-11-23T06:31:06.081195
MIT
false
00638b49903a618d0ce946d09f0c30c5
\n\n
.venv\Lib\site-packages\anyio\streams\__pycache__\file.cpython-313.pyc
file.cpython-313.pyc
Other
7,440
0.8
0.089888
0
python-kit
218
2024-06-09T20:01:41.400618
Apache-2.0
false
052254eb7107187d60ab735968b2cb5c
\n\n
.venv\Lib\site-packages\anyio\streams\__pycache__\memory.cpython-313.pyc
memory.cpython-313.pyc
Other
14,860
0.8
0.070513
0
node-utils
838
2023-08-12T12:16:04.736868
GPL-3.0
false
dd081ff5d42efa42a8bcac8ab9b1eba0
\n\n
.venv\Lib\site-packages\anyio\streams\__pycache__\stapled.cpython-313.pyc
stapled.cpython-313.pyc
Other
7,559
0.8
0
0
awesome-app
562
2023-12-30T04:19:51.308099
BSD-3-Clause
false
dd8c8bf61a6b97a812413adc12e4bf99
\n\n
.venv\Lib\site-packages\anyio\streams\__pycache__\text.cpython-313.pyc
text.cpython-313.pyc
Other
8,252
0.8
0.11236
0
node-utils
346
2025-02-23T02:43:55.144352
BSD-3-Clause
false
9078fefc649c8697eedcb74fd103cbb6
\n\n
.venv\Lib\site-packages\anyio\streams\__pycache__\tls.cpython-313.pyc
tls.cpython-313.pyc
Other
17,404
0.95
0.072165
0.022727
awesome-app
450
2024-09-26T21:19:11.705008
BSD-3-Clause
false
7f078f266d7cf9a981610244d488d6e8
\n\n
.venv\Lib\site-packages\anyio\streams\__pycache__\__init__.cpython-313.pyc
__init__.cpython-313.pyc
Other
188
0.7
0
0
vue-tools
670
2024-01-22T00:45:49.908473
Apache-2.0
false
f5c625221e3ce5b68a93684700e6e870
from __future__ import annotations\n\nimport array\nimport math\nimport os\nimport socket\nimport sys\nimport types\nimport weakref\nfrom collections.abc import (\n AsyncGenerator,\n AsyncIterator,\n Awaitable,\n Callable,\n Collection,\n Coroutine,\n Iterable,\n Sequence,\n)\nfrom concurrent.fu...
.venv\Lib\site-packages\anyio\_backends\_trio.py
_trio.py
Python
40,429
0.95
0.201649
0.042593
python-kit
797
2024-07-04T10:39:07.879011
Apache-2.0
false
1157b6a2ae73078db97ca4b8144e17de
\n\n
.venv\Lib\site-packages\anyio\_backends\__pycache__\_trio.cpython-313.pyc
_trio.cpython-313.pyc
Other
71,904
0.6
0
0.00365
awesome-app
296
2025-05-04T23:53:58.705057
MIT
false
ed6c404bb08d2908b01ddac9741c868a
\n\n
.venv\Lib\site-packages\anyio\_backends\__pycache__\__init__.cpython-313.pyc
__init__.cpython-313.pyc
Other
190
0.7
0
0
react-lib
662
2023-12-27T00:25:29.456885
Apache-2.0
false
755269ec8ce4694ffb2564113c9de33b
from __future__ import annotations\n\nimport asyncio\nimport socket\nimport threading\nfrom collections.abc import Callable\nfrom selectors import EVENT_READ, EVENT_WRITE, DefaultSelector\nfrom typing import TYPE_CHECKING, Any\n\nif TYPE_CHECKING:\n from _typeshed import FileDescriptorLike\n\n_selector_lock = thread...
.venv\Lib\site-packages\anyio\_core\_asyncio_selector_thread.py
_asyncio_selector_thread.py
Python
5,626
0.95
0.209581
0.072464
vue-tools
233
2023-12-16T03:22:56.676128
BSD-3-Clause
false
f1f3ced25c061fbb15a0f70048ef7e21
from __future__ import annotations\n\nimport math\nimport sys\nimport threading\nfrom collections.abc import Awaitable, Callable, Generator\nfrom contextlib import contextmanager\nfrom importlib import import_module\nfrom typing import TYPE_CHECKING, Any, TypeVar\n\nimport sniffio\n\nif sys.version_info >= (3, 11):\n ...
.venv\Lib\site-packages\anyio\_core\_eventloop.py
_eventloop.py
Python
4,695
0.95
0.168675
0.081967
python-kit
829
2025-03-29T16:29:39.369571
GPL-3.0
false
7235a9fcd37e87fe8f159a5a0b291fbb
from __future__ import annotations\n\nimport sys\nfrom collections.abc import Generator\nfrom textwrap import dedent\nfrom typing import Any\n\nif sys.version_info < (3, 11):\n from exceptiongroup import BaseExceptionGroup\n\n\nclass BrokenResourceError(Exception):\n """\n Raised when trying to use a resource ...
.venv\Lib\site-packages\anyio\_core\_exceptions.py
_exceptions.py
Python
3,503
0.95
0.214286
0.010638
awesome-app
643
2025-05-30T09:48:29.622838
BSD-3-Clause
false
675efff2c3b964e8d3db940924fb96e6
from __future__ import annotations\n\nfrom ..abc import AsyncResource\nfrom ._tasks import CancelScope\n\n\nasync def aclose_forcefully(resource: AsyncResource) -> None:\n """\n Close an asynchronous resource in a cancelled scope.\n\n Doing this closes the resource without waiting on anything.\n\n :param re...
.venv\Lib\site-packages\anyio\_core\_resources.py
_resources.py
Python
435
0.85
0.055556
0
python-kit
662
2025-02-09T04:25:05.377658
Apache-2.0
false
c3f7a31ae1075340ff21ad4908de13f1
from __future__ import annotations\n\nfrom collections.abc import AsyncIterator\nfrom contextlib import AbstractContextManager\nfrom signal import Signals\n\nfrom ._eventloop import get_async_backend\n\n\ndef open_signal_receiver(\n *signals: Signals,\n) -> AbstractContextManager[AsyncIterator[Signals]]:\n """\n ...
.venv\Lib\site-packages\anyio\_core\_signals.py
_signals.py
Python
905
0.85
0.111111
0.052632
awesome-app
337
2023-09-02T12:02:28.116975
BSD-3-Clause
false
39f2f2686da900a7525f06c1790604dc
from __future__ import annotations\n\nimport math\nfrom typing import TypeVar\nfrom warnings import warn\n\nfrom ..streams.memory import (\n MemoryObjectReceiveStream,\n MemoryObjectSendStream,\n MemoryObjectStreamState,\n)\n\nT_Item = TypeVar("T_Item")\n\n\nclass create_memory_object_stream(\n tuple[Memory...
.venv\Lib\site-packages\anyio\_core\_streams.py
_streams.py
Python
1,804
0.95
0.115385
0
awesome-app
55
2025-01-20T21:28:11.587629
Apache-2.0
false
4c35b4ad7bfc94113376cb6d24da67f0
from __future__ import annotations\n\nimport sys\nfrom collections.abc import AsyncIterable, Iterable, Mapping, Sequence\nfrom io import BytesIO\nfrom os import PathLike\nfrom subprocess import PIPE, CalledProcessError, CompletedProcess\nfrom typing import IO, Any, Union, cast\n\nfrom ..abc import Process\nfrom ._event...
.venv\Lib\site-packages\anyio\_core\_subprocesses.py
_subprocesses.py
Python
8,047
0.85
0.153465
0.017143
python-kit
757
2024-08-25T04:23:19.841222
BSD-3-Clause
false
dc98ba21bd805bc0bccc0e2e69c6ca80
from __future__ import annotations\n\nimport math\nfrom collections import deque\nfrom dataclasses import dataclass\nfrom types import TracebackType\n\nfrom sniffio import AsyncLibraryNotFoundError\n\nfrom ..lowlevel import checkpoint\nfrom ._eventloop import get_async_backend\nfrom ._exceptions import BusyResourceErro...
.venv\Lib\site-packages\anyio\_core\_synchronization.py
_synchronization.py
Python
20,320
0.85
0.236339
0.007286
react-lib
849
2024-02-08T07:29:35.191424
BSD-3-Clause
false
5303f6905f631b068a1dc2482ed0588e
from __future__ import annotations\n\nimport math\nfrom collections.abc import Generator\nfrom contextlib import contextmanager\nfrom types import TracebackType\n\nfrom ..abc._tasks import TaskGroup, TaskStatus\nfrom ._eventloop import get_async_backend\n\n\nclass _IgnoredTaskStatus(TaskStatus[object]):\n def starte...
.venv\Lib\site-packages\anyio\_core\_tasks.py
_tasks.py
Python
4,757
0.85
0.21519
0
python-kit
881
2025-02-06T17:58:46.444230
BSD-3-Clause
false
3d8e2501ee3037118ba5504b78194259
from __future__ import annotations\n\nimport os\nimport sys\nimport tempfile\nfrom collections.abc import Iterable\nfrom io import BytesIO, TextIOWrapper\nfrom types import TracebackType\nfrom typing import (\n TYPE_CHECKING,\n Any,\n AnyStr,\n Generic,\n overload,\n)\n\nfrom .. import to_thread\nfrom .....
.venv\Lib\site-packages\anyio\_core\_tempfile.py
_tempfile.py
Python
19,696
0.95
0.159091
0.019531
react-lib
369
2024-06-17T06:10:24.163034
Apache-2.0
false
c9dba88b12fb1cde94ceda4d974840f9
from __future__ import annotations\n\nfrom collections.abc import Awaitable, Generator\nfrom typing import Any, cast\n\nfrom ._eventloop import get_async_backend\n\n\nclass TaskInfo:\n """\n Represents an asynchronous task.\n\n :ivar int id: the unique identifier of the task\n :ivar parent_id: the identifie...
.venv\Lib\site-packages\anyio\_core\_testing.py
_testing.py
Python
2,118
0.85
0.179487
0
awesome-app
976
2024-08-04T19:14:15.660475
MIT
true
6456eda4fe7936943a49da6f7656f7b0
from __future__ import annotations\n\nfrom collections.abc import Callable, Mapping\nfrom typing import Any, TypeVar, final, overload\n\nfrom ._exceptions import TypedAttributeLookupError\n\nT_Attr = TypeVar("T_Attr")\nT_Default = TypeVar("T_Default")\nundefined = object()\n\n\ndef typed_attribute() -> Any:\n """Ret...
.venv\Lib\site-packages\anyio\_core\_typedattr.py
_typedattr.py
Python
2,508
0.85
0.246914
0
python-kit
87
2024-06-07T18:16:05.698239
Apache-2.0
false
f2e4ac2044a721fb49edd8b3f486c4a5
\n\n
.venv\Lib\site-packages\anyio\_core\__pycache__\_asyncio_selector_thread.cpython-313.pyc
_asyncio_selector_thread.cpython-313.pyc
Other
8,634
0.8
0.021505
0
vue-tools
343
2024-06-24T02:40:43.116166
BSD-3-Clause
false
56bc579a8264e90fc7d88d99e4285764
\n\n
.venv\Lib\site-packages\anyio\_core\__pycache__\_eventloop.cpython-313.pyc
_eventloop.cpython-313.pyc
Other
6,297
0.95
0.093023
0.013889
vue-tools
908
2024-08-29T08:35:32.938178
GPL-3.0
false
e877cd138c6f52630deaa0a9aa41c84c
\n\n
.venv\Lib\site-packages\anyio\_core\__pycache__\_exceptions.cpython-313.pyc
_exceptions.cpython-313.pyc
Other
6,269
0.95
0.059524
0
vue-tools
647
2024-09-29T05:26:17.043345
BSD-3-Clause
false
8058e14f919283aab3d8298a45350064
\n\n
.venv\Lib\site-packages\anyio\_core\__pycache__\_fileio.cpython-313.pyc
_fileio.cpython-313.pyc
Other
41,514
0.95
0.037736
0.201835
awesome-app
661
2024-01-19T02:57:26.133406
GPL-3.0
false
4d5947ae61699602fb197a342edc7e6c
\n\n
.venv\Lib\site-packages\anyio\_core\__pycache__\_resources.cpython-313.pyc
_resources.cpython-313.pyc
Other
922
0.8
0
0
react-lib
695
2024-10-29T00:02:36.481382
GPL-3.0
false
ae5881d0f3255050f1cf49345a182fb5
\n\n
.venv\Lib\site-packages\anyio\_core\__pycache__\_signals.cpython-313.pyc
_signals.cpython-313.pyc
Other
1,234
0.7
0.074074
0
awesome-app
791
2023-09-15T05:37:40.736997
GPL-3.0
false
5c5c6d7c4f926f4e3747ee70259a67e0
\n\n
.venv\Lib\site-packages\anyio\_core\__pycache__\_sockets.cpython-313.pyc
_sockets.cpython-313.pyc
Other
30,985
0.95
0.092975
0.004854
vue-tools
610
2024-05-02T03:52:09.316756
GPL-3.0
false
aff0c38b610207b7606caf4f1086130d
\n\n
.venv\Lib\site-packages\anyio\_core\__pycache__\_streams.cpython-313.pyc
_streams.cpython-313.pyc
Other
2,373
0.8
0.030303
0
vue-tools
725
2024-08-28T12:54:38.095041
Apache-2.0
false
ecb4c037c452c9f921dfa51e6b8642f2
\n\n
.venv\Lib\site-packages\anyio\_core\__pycache__\_subprocesses.cpython-313.pyc
_subprocesses.cpython-313.pyc
Other
9,445
0.8
0.119403
0
awesome-app
533
2024-07-21T11:35:51.314963
GPL-3.0
false
78850f23d2473166d6c3172982628c3d
\n\n
.venv\Lib\site-packages\anyio\_core\__pycache__\_synchronization.cpython-313.pyc
_synchronization.cpython-313.pyc
Other
32,215
0.8
0.099644
0
awesome-app
835
2024-07-19T12:20:51.496442
Apache-2.0
false
57b189aa86b7ecd5beebac354c5199ed
\n\n
.venv\Lib\site-packages\anyio\_core\__pycache__\_tasks.cpython-313.pyc
_tasks.cpython-313.pyc
Other
6,870
0.8
0.12963
0
python-kit
58
2025-05-14T18:36:02.868256
Apache-2.0
false
191f47697be434ff9901270956c255d8
\n\n
.venv\Lib\site-packages\anyio\_core\__pycache__\_tempfile.cpython-313.pyc
_tempfile.cpython-313.pyc
Other
27,902
0.95
0.090062
0.003448
node-utils
919
2024-05-03T19:40:24.943947
Apache-2.0
false
637641d75b665a0a1206b2e285da854c
\n\n
.venv\Lib\site-packages\anyio\_core\__pycache__\_testing.cpython-313.pyc
_testing.cpython-313.pyc
Other
3,594
0.8
0.085106
0
react-lib
24
2024-11-30T18:32:10.008138
Apache-2.0
true
846bf8330068cfb06c7e293e3a2c0256
\n\n
.venv\Lib\site-packages\anyio\_core\__pycache__\_typedattr.cpython-313.pyc
_typedattr.cpython-313.pyc
Other
3,776
0.95
0.166667
0
python-kit
569
2025-06-26T03:03:18.045593
Apache-2.0
false
00347416d95e28c823f55cd357e4ecdc
\n\n
.venv\Lib\site-packages\anyio\_core\__pycache__\__init__.cpython-313.pyc
__init__.cpython-313.pyc
Other
186
0.7
0
0
node-utils
556
2025-05-16T15:31:13.039285
Apache-2.0
false
224ef3624bd615019a4c8bb610ada1b8
\n\n
.venv\Lib\site-packages\anyio\__pycache__\from_thread.cpython-313.pyc
from_thread.cpython-313.pyc
Other
23,757
0.95
0.093985
0.008696
vue-tools
111
2025-03-16T15:37:20.252106
BSD-3-Clause
false
6f2c9f2c8ed7ebb7a4dfc9e58b6bf3a8
\n\n
.venv\Lib\site-packages\anyio\__pycache__\lowlevel.cpython-313.pyc
lowlevel.cpython-313.pyc
Other
7,004
0.8
0.072165
0.012658
awesome-app
670
2025-02-03T10:40:47.914462
Apache-2.0
false
154a2a133241c984a1e50ae64e301de2
\n\n
.venv\Lib\site-packages\anyio\__pycache__\pytest_plugin.cpython-313.pyc
pytest_plugin.cpython-313.pyc
Other
13,728
0.95
0.078947
0
awesome-app
876
2023-11-23T05:36:17.939060
Apache-2.0
true
bd6c086263c00f0c0b7384375bca1536
\n\n
.venv\Lib\site-packages\anyio\__pycache__\to_interpreter.cpython-313.pyc
to_interpreter.cpython-313.pyc
Other
9,196
0.95
0.073394
0.020619
awesome-app
288
2024-01-17T05:12:23.866575
BSD-3-Clause
false
e14fd3e7fd37eaeab93dd7785b1656b4
\n\n
.venv\Lib\site-packages\anyio\__pycache__\to_process.cpython-313.pyc
to_process.cpython-313.pyc
Other
11,972
0.95
0.04918
0.026786
node-utils
105
2023-11-05T03:28:57.486641
BSD-3-Clause
false
65d47b8bda93522fe12ae92301259fa7
\n\n
.venv\Lib\site-packages\anyio\__pycache__\to_thread.cpython-313.pyc
to_thread.cpython-313.pyc
Other
2,846
0.95
0.166667
0.027778
python-kit
706
2023-11-04T01:34:51.539860
GPL-3.0
false
5dde93131b0196fdb5c5cac03616ce07
\n\n
.venv\Lib\site-packages\anyio\__pycache__\__init__.cpython-313.pyc
__init__.cpython-313.pyc
Other
3,597
0.8
0
0
vue-tools
271
2025-01-06T01:01:17.151453
MIT
false
dd806783152a9db1e110079f2e82a05c
[pytest11]\nanyio = anyio.pytest_plugin\n
.venv\Lib\site-packages\anyio-4.9.0.dist-info\entry_points.txt
entry_points.txt
Other
39
0.5
0
0
react-lib
162
2023-10-24T19:38:09.307467
MIT
false
b5e037147bc565eba99a2f4142dd7990
pip\n
.venv\Lib\site-packages\anyio-4.9.0.dist-info\INSTALLER
INSTALLER
Other
4
0.5
0
0
node-utils
61
2025-02-05T01:46:53.258772
BSD-3-Clause
false
365c9bfeb7d89244f2ce01c1de44cb85
The MIT License (MIT)\n\nCopyright (c) 2018 Alex Grönholm\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the "Software"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, me...
.venv\Lib\site-packages\anyio-4.9.0.dist-info\LICENSE
LICENSE
Other
1,081
0.7
0
0
node-utils
463
2025-04-07T12:42:29.461243
Apache-2.0
false
c0a769411d2af7894099e8ff75058c9f
Metadata-Version: 2.2\nName: anyio\nVersion: 4.9.0\nSummary: High level compatibility layer for multiple asynchronous event loop implementations\nAuthor-email: Alex Grönholm <alex.gronholm@nextday.fi>\nLicense: MIT\nProject-URL: Documentation, https://anyio.readthedocs.io/en/latest/\nProject-URL: Changelog, https://any...
.venv\Lib\site-packages\anyio-4.9.0.dist-info\METADATA
METADATA
Other
4,682
0.95
0.028571
0.107527
awesome-app
165
2024-06-14T12:49:51.855365
GPL-3.0
false
2258c9b8686781cf21bb9bfce69b289a
anyio-4.9.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4\nanyio-4.9.0.dist-info/LICENSE,sha256=U2GsncWPLvX9LpsJxoKXwX8ElQkJu8gCO9uC6s8iwrA,1081\nanyio-4.9.0.dist-info/METADATA,sha256=vvkWPXXTbrpTCFK7zdcYwQcSQhx6Q4qITM9t_PEQCrY,4682\nanyio-4.9.0.dist-info/RECORD,,\nanyio-4.9.0.dist-info/WHEEL...
.venv\Lib\site-packages\anyio-4.9.0.dist-info\RECORD
RECORD
Other
5,964
0.7
0
0
react-lib
43
2024-04-01T19:31:51.275817
MIT
false
5d0c8e9aed03c334a288cc897afb9d43
anyio\n
.venv\Lib\site-packages\anyio-4.9.0.dist-info\top_level.txt
top_level.txt
Other
6
0.5
0
0
python-kit
510
2023-10-10T08:49:32.095908
GPL-3.0
false
ed5a97064b32e2de132a87802c6ef7f7
Wheel-Version: 1.0\nGenerator: setuptools (76.0.0)\nRoot-Is-Purelib: true\nTag: py3-none-any\n\n
.venv\Lib\site-packages\anyio-4.9.0.dist-info\WHEEL
WHEEL
Other
91
0.5
0
0
node-utils
548
2023-08-20T12:14:31.941233
MIT
false
1b247ebaec32fe9d45aeaf7545cfd008
# SPDX-License-Identifier: MIT\n\nfrom __future__ import annotations\n\n\nclass Argon2Error(Exception):\n """\n Superclass of all argon2 exceptions.\n\n Never thrown directly.\n """\n\n\nclass VerificationError(Argon2Error):\n """\n Verification failed.\n\n You can find the original error message f...
.venv\Lib\site-packages\argon2\exceptions.py
exceptions.py
Python
1,322
0.95
0.181818
0.02381
awesome-app
245
2023-11-10T04:25:51.438064
Apache-2.0
false
c83de020ec00b8748c00f43f1d221b13
# SPDX-License-Identifier: MIT\n\n"""\nThis module offers access to standardized parameters that you can load using\n:meth:`argon2.PasswordHasher.from_parameters()`. See the `source code\n<https://github.com/hynek/argon2-cffi/blob/main/src/argon2/profiles.py>`_ for\nconcrete values and :doc:`parameters` for more inform...
.venv\Lib\site-packages\argon2\profiles.py
profiles.py
Python
1,650
0.95
0.088608
0.079365
node-utils
722
2025-03-28T07:12:08.365156
MIT
false
f40c407d29501be03ab81897e8c053f2
# SPDX-License-Identifier: MIT\n\n"""\nLegacy mid-level functions.\n"""\n\nfrom __future__ import annotations\n\nimport os\nimport warnings\n\nfrom typing import Literal\n\nfrom ._password_hasher import (\n DEFAULT_HASH_LENGTH,\n DEFAULT_MEMORY_COST,\n DEFAULT_PARALLELISM,\n DEFAULT_RANDOM_SALT_LENGTH,\n ...
.venv\Lib\site-packages\argon2\_legacy.py
_legacy.py
Python
2,416
0.95
0.152174
0.013158
awesome-app
343
2024-09-04T09:20:47.435462
MIT
false
7149eb4fd43b1337dc26463a7dde6901
# SPDX-License-Identifier: MIT\n\nfrom __future__ import annotations\n\nimport platform\nimport sys\n\nfrom dataclasses import dataclass\nfrom typing import Any\n\nfrom .exceptions import InvalidHashError, UnsupportedParametersError\nfrom .low_level import Type\n\n\nNoneType = type(None)\n\n\ndef _check_types(**kw: Any...
.venv\Lib\site-packages\argon2\_utils.py
_utils.py
Python
3,751
0.95
0.12069
0.015873
python-kit
816
2025-06-29T08:40:02.944591
BSD-3-Clause
false
b0838ac22c991548dc7724a86b0acd71
# SPDX-License-Identifier: MIT\n\n"""\nArgon2 for Python\n"""\n\nfrom . import exceptions, low_level, profiles\nfrom ._legacy import hash_password, hash_password_raw, verify_password\nfrom ._password_hasher import (\n DEFAULT_HASH_LENGTH,\n DEFAULT_MEMORY_COST,\n DEFAULT_PARALLELISM,\n DEFAULT_RANDOM_SALT_L...
.venv\Lib\site-packages\argon2\__init__.py
__init__.py
Python
1,869
0.95
0.075949
0.015873
vue-tools
348
2024-04-09T14:42:12.222205
MIT
false
9ffa0280cf1cbd21bd303d1ae5967cf1
# SPDX-License-Identifier: MIT\n\nfrom __future__ import annotations\n\nimport argparse\nimport sys\nimport timeit\n\nfrom . import (\n DEFAULT_HASH_LENGTH,\n DEFAULT_MEMORY_COST,\n DEFAULT_PARALLELISM,\n DEFAULT_TIME_COST,\n PasswordHasher,\n profiles,\n)\n\n\ndef main(argv: list[str]) -> None:\n ...
.venv\Lib\site-packages\argon2\__main__.py
__main__.py
Python
2,332
0.95
0.043956
0.012821
awesome-app
218
2025-06-07T06:21:18.467703
GPL-3.0
false
4e9f9bc935df56591d842e07d660b2ce
\n\n
.venv\Lib\site-packages\argon2\__pycache__\exceptions.cpython-313.pyc
exceptions.cpython-313.pyc
Other
2,088
0.95
0.108108
0
awesome-app
341
2023-07-21T12:59:02.905377
BSD-3-Clause
false
c85be2c6fe6ac33d6def09ed6dcc7bbe
\n\n
.venv\Lib\site-packages\argon2\__pycache__\low_level.cpython-313.pyc
low_level.cpython-313.pyc
Other
7,523
0.95
0.076471
0.007407
node-utils
994
2024-04-28T14:38:28.190615
MIT
false
1b07f0aabf887756907692fde8f48f44
\n\n
.venv\Lib\site-packages\argon2\__pycache__\profiles.cpython-313.pyc
profiles.cpython-313.pyc
Other
1,652
0.8
0.102564
0
react-lib
335
2024-03-17T07:51:15.445042
MIT
false
3870bb5cd6c21795ac56ab70c9fcfec0
\n\n
.venv\Lib\site-packages\argon2\__pycache__\_legacy.cpython-313.pyc
_legacy.cpython-313.pyc
Other
3,017
0.95
0.163636
0
awesome-app
608
2024-11-23T09:49:22.798962
BSD-3-Clause
false
d516e9fb6efab646ee1966ec5eb1ea80
\n\n
.venv\Lib\site-packages\argon2\__pycache__\_password_hasher.cpython-313.pyc
_password_hasher.cpython-313.pyc
Other
10,286
0.95
0.077348
0.013699
node-utils
745
2024-03-16T12:11:47.851808
BSD-3-Clause
false
e2885086017629fb39b9c6676aec54ae
\n\n
.venv\Lib\site-packages\argon2\__pycache__\_utils.cpython-313.pyc
_utils.cpython-313.pyc
Other
5,576
0.8
0
0
react-lib
626
2024-11-07T05:37:10.545811
BSD-3-Clause
false
30eafe7a9898749c2b8bd27eed40e9a3
\n\n
.venv\Lib\site-packages\argon2\__pycache__\__init__.cpython-313.pyc
__init__.cpython-313.pyc
Other
2,190
0.95
0.071429
0
node-utils
105
2024-07-21T02:29:08.189521
GPL-3.0
false
2b50a2d8f746db4bd800168b0ba460fa
\n\n
.venv\Lib\site-packages\argon2\__pycache__\__main__.cpython-313.pyc
__main__.cpython-313.pyc
Other
3,502
0.95
0
0
awesome-app
970
2023-07-20T17:56:06.784635
GPL-3.0
false
3145e2f925ef18195bf79b54853cc73d
pip\n
.venv\Lib\site-packages\argon2_cffi-25.1.0.dist-info\INSTALLER
INSTALLER
Other
4
0.5
0
0
python-kit
920
2023-10-26T08:06:20.806853
MIT
false
365c9bfeb7d89244f2ce01c1de44cb85
Metadata-Version: 2.4\nName: argon2-cffi\nVersion: 25.1.0\nSummary: Argon2 for Python\nProject-URL: Documentation, https://argon2-cffi.readthedocs.io/\nProject-URL: Changelog, https://github.com/hynek/argon2-cffi/blob/main/CHANGELOG.md\nProject-URL: GitHub, https://github.com/hynek/argon2-cffi\nProject-URL: Funding, ht...
.venv\Lib\site-packages\argon2_cffi-25.1.0.dist-info\METADATA
METADATA
Other
4,119
0.95
0.066667
0.116883
awesome-app
452
2024-01-07T22:25:52.887072
MIT
false
061b14092ac544f5200e265016506463
argon2/__init__.py,sha256=N4S3LvR1y3WstysObwDQsF4yt8NpEot8uGAmy_MZ5fw,1869\nargon2/__main__.py,sha256=bCi1rJkhMBpiDZe3W-MfC2DFH5wYJH4RDmySLcL_Jwg,2332\nargon2/__pycache__/__init__.cpython-313.pyc,,\nargon2/__pycache__/__main__.cpython-313.pyc,,\nargon2/__pycache__/_legacy.cpython-313.pyc,,\nargon2/__pycache__/_password...
.venv\Lib\site-packages\argon2_cffi-25.1.0.dist-info\RECORD
RECORD
Other
1,490
0.7
0
0
react-lib
656
2024-05-04T23:36:07.944999
Apache-2.0
false
23a6dac7400cf0430d62e5cbab9b3fa0
Wheel-Version: 1.0\nGenerator: hatchling 1.27.0\nRoot-Is-Purelib: true\nTag: py3-none-any\n
.venv\Lib\site-packages\argon2_cffi-25.1.0.dist-info\WHEEL
WHEEL
Other
87
0.5
0
0
react-lib
822
2024-03-23T06:53:39.233905
MIT
false
e2fcb0ad9ea59332c808928b4b439e7a
The MIT License (MIT)\n\nCopyright (c) 2015 Hynek Schlawack and the argon2-cffi contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the "Software"), to deal\nin the Software without restriction, including without limitation t...
.venv\Lib\site-packages\argon2_cffi-25.1.0.dist-info\licenses\LICENSE
LICENSE
Other
1,115
0.7
0
0
vue-tools
507
2024-03-15T15:23:17.892307
Apache-2.0
false
e91e96ef55f45fe9caf7fc3e73672c4b
pip\n
.venv\Lib\site-packages\argon2_cffi_bindings-21.2.0.dist-info\INSTALLER
INSTALLER
Other
4
0.5
0
0
vue-tools
220
2025-06-09T16:35:26.404071
MIT
false
365c9bfeb7d89244f2ce01c1de44cb85
The MIT License (MIT)\n\nCopyright (c) 2021 Hynek Schlawack\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the "Software"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, ...
.venv\Lib\site-packages\argon2_cffi_bindings-21.2.0.dist-info\LICENSE
LICENSE
Other
1,103
0.7
0
0
vue-tools
713
2024-09-01T11:28:31.872469
MIT
false
4642dfcbd13c1cc49e9f99df9de51ba1
Metadata-Version: 2.1\nName: argon2-cffi-bindings\nVersion: 21.2.0\nSummary: Low-level CFFI bindings for Argon2\nHome-page: https://github.com/hynek/argon2-cffi-bindings\nAuthor: Hynek Schlawack\nAuthor-email: hs@ox.cx\nMaintainer: Hynek Schlawack\nMaintainer-email: hs@ox.cx\nLicense: MIT\nProject-URL: Source Code, htt...
.venv\Lib\site-packages\argon2_cffi_bindings-21.2.0.dist-info\METADATA
METADATA
Other
6,705
0.95
0.072368
0.132075
vue-tools
885
2023-07-25T05:06:11.986296
Apache-2.0
false
ff3a28401f15db5e1d6759a406c21d6e