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
"""A Jupyter console app to run files."""\n# Copyright (c) Jupyter Development Team.\n# Distributed under the terms of the Modified BSD License.\nfrom __future__ import annotations\n\nimport queue\nimport signal\nimport sys\nimport time\nimport typing as t\n\nfrom jupyter_core.application import JupyterApp, base_aliase...
.venv\Lib\site-packages\jupyter_client\runapp.py
runapp.py
Python
4,684
0.95
0.164063
0.091743
vue-tools
298
2024-11-27T07:55:57.993038
Apache-2.0
false
604612c3a102c80cf3611c021d113cfd
"""Session object for building, serializing, sending, and receiving messages.\n\nThe Session object supports serialization, HMAC signatures,\nand metadata on messages.\n\nAlso defined here are utilities for working with Sessions:\n* A SessionFactory to be used as a base class for configurables that work with\nSessions....
.venv\Lib\site-packages\jupyter_client\session.py
session.py
Python
37,774
0.95
0.160795
0.074514
awesome-app
314
2025-05-11T01:48:12.823915
BSD-3-Clause
false
2aa0d79992f421c514f252e4055a9171
""" Defines a KernelClient that provides thread-safe sockets with async callbacks on message\nreplies.\n"""\nimport asyncio\nimport atexit\nimport time\nfrom concurrent.futures import Future\nfrom functools import partial\nfrom threading import Thread\nfrom typing import Any, Dict, List, Optional\n\nimport zmq\nfrom to...
.venv\Lib\site-packages\jupyter_client\threaded.py
threaded.py
Python
11,283
0.95
0.196581
0.066202
node-utils
3
2025-01-27T14:09:22.143631
BSD-3-Clause
false
c44783a53a726d17e4a54da7168d8ba7
"""\nutils:\n- provides utility wrappers to run asynchronous functions in a blocking environment.\n- vendor functions from ipython_genutils that should be retired at some point.\n"""\nfrom __future__ import annotations\n\nimport os\nfrom typing import Sequence\n\nfrom jupyter_core.utils import ensure_async, run_sync #...
.venv\Lib\site-packages\jupyter_client\utils.py
utils.py
Python
3,178
0.95
0.166667
0.1
node-utils
421
2024-01-10T10:15:50.772369
BSD-3-Clause
false
5e113acc3c4f7bc6507c606488d672a1
"""Use a Windows event to interrupt a child process like SIGINT.\n\nThe child needs to explicitly listen for this - see\nipykernel.parentpoller.ParentPollerWindows for a Python implementation.\n"""\nimport ctypes\nfrom typing import Any\n\n\ndef create_interrupt_event() -> Any:\n """Create an interrupt event handle....
.venv\Lib\site-packages\jupyter_client\win_interrupt.py
win_interrupt.py
Python
1,516
0.95
0.133333
0.083333
python-kit
717
2024-12-26T18:46:27.329736
Apache-2.0
false
3f7edf05debbb72ecdaa931a8d9f4fda
"""The version information for jupyter client."""\nimport re\nfrom typing import List, Union\n\n__version__ = "8.6.3"\n\n# Build up version_info tuple for backwards compatibility\npattern = r"(?P<major>\d+).(?P<minor>\d+).(?P<patch>\d+)(?P<rest>.*)"\nmatch = re.match(pattern, __version__)\nif match:\n parts: List[Un...
.venv\Lib\site-packages\jupyter_client\_version.py
_version.py
Python
577
0.95
0.25
0.0625
python-kit
42
2023-10-31T09:06:29.173016
GPL-3.0
false
954eb2c030cf859744effbf697f7aa2d
"""Client-side implementations of the Jupyter protocol"""\nfrom ._version import __version__, protocol_version, protocol_version_info, version_info\nfrom .asynchronous import AsyncKernelClient\nfrom .blocking import BlockingKernelClient\nfrom .client import KernelClient\nfrom .connect import * # noqa\nfrom .launcher i...
.venv\Lib\site-packages\jupyter_client\__init__.py
__init__.py
Python
539
0.95
0
0
vue-tools
913
2024-01-04T22:40:17.220337
Apache-2.0
false
c06df17f0c15ac0bb37f7fb5629603cf
"""Implements an async kernel client"""\n# Copyright (c) Jupyter Development Team.\n# Distributed under the terms of the Modified BSD License.\nfrom __future__ import annotations\n\nimport typing as t\n\nimport zmq.asyncio\nfrom traitlets import Instance, Type\n\nfrom ..channels import AsyncZMQSocketChannel, HBChannel\...
.venv\Lib\site-packages\jupyter_client\asynchronous\client.py
client.py
Python
2,870
0.95
0.106667
0.145455
awesome-app
897
2023-09-19T10:23:43.058444
MIT
false
01ec28257052c2917e3f7c13ebeff4cf
from .client import AsyncKernelClient # noqa\n
.venv\Lib\site-packages\jupyter_client\asynchronous\__init__.py
__init__.py
Python
46
0.75
0
0
vue-tools
497
2024-01-12T10:24:23.924447
Apache-2.0
false
89826217d981926d913b18cf5a678e0d
\n\n
.venv\Lib\site-packages\jupyter_client\asynchronous\__pycache__\client.cpython-313.pyc
client.cpython-313.pyc
Other
3,533
0.8
0.083333
0
awesome-app
771
2024-03-29T00:42:25.586653
Apache-2.0
false
31cda43ee6d2441448240262999284e8
\n\n
.venv\Lib\site-packages\jupyter_client\asynchronous\__pycache__\__init__.cpython-313.pyc
__init__.cpython-313.pyc
Other
253
0.7
0
0
vue-tools
201
2024-07-24T04:52:28.665889
Apache-2.0
false
4b63a9b4841e0ee90d4b99e44f197e71
"""Implements a fully blocking kernel client.\n\nUseful for test suites and blocking terminal interfaces.\n"""\n# Copyright (c) Jupyter Development Team.\n# Distributed under the terms of the Modified BSD License.\nfrom __future__ import annotations\n\nimport typing as t\n\nfrom traitlets import Type\n\nfrom ..channels...
.venv\Lib\site-packages\jupyter_client\blocking\client.py
client.py
Python
2,742
0.95
0.112676
0.153846
node-utils
862
2025-02-26T14:45:57.145859
GPL-3.0
false
2f177750f0de905b1204842450b3bbad
from .client import BlockingKernelClient # noqa\n
.venv\Lib\site-packages\jupyter_client\blocking\__init__.py
__init__.py
Python
49
0.75
0
0
react-lib
457
2024-12-05T12:09:31.954650
GPL-3.0
false
c45635ad083c54f9ed788e23cd1c6311
\n\n
.venv\Lib\site-packages\jupyter_client\blocking\__pycache__\client.cpython-313.pyc
client.cpython-313.pyc
Other
3,242
0.8
0.107143
0
python-kit
559
2023-12-17T07:52:24.061615
BSD-3-Clause
false
19d969ca472314e96b86d5940576aff7
\n\n
.venv\Lib\site-packages\jupyter_client\blocking\__pycache__\__init__.cpython-313.pyc
__init__.cpython-313.pyc
Other
252
0.7
0
0
react-lib
239
2024-02-07T08:09:54.560596
Apache-2.0
false
8c0a4d72a48fc7636a9760cc04d35656
"""A kernel manager with a tornado IOLoop"""\n# Copyright (c) Jupyter Development Team.\n# Distributed under the terms of the Modified BSD License.\nimport typing as t\n\nimport zmq\nfrom tornado import ioloop\nfrom traitlets import Instance, Type\nfrom zmq.eventloop.zmqstream import ZMQStream\n\nfrom ..manager import ...
.venv\Lib\site-packages\jupyter_client\ioloop\manager.py
manager.py
Python
4,162
0.95
0.172414
0.042553
python-kit
764
2024-07-18T05:04:25.098288
BSD-3-Clause
false
fcde566a75531e058ea634d1b0daec87
"""A basic in process kernel monitor with autorestarting.\n\nThis watches a kernel's state using KernelManager.is_alive and auto\nrestarts the kernel if it dies.\n"""\n# Copyright (c) Jupyter Development Team.\n# Distributed under the terms of the Modified BSD License.\nimport time\nimport warnings\nfrom typing import ...
.venv\Lib\site-packages\jupyter_client\ioloop\restarter.py
restarter.py
Python
3,906
0.95
0.205882
0.104651
vue-tools
882
2025-06-01T20:49:15.538257
GPL-3.0
false
8f3480c6645538ff46f76e9f2bed6bb9
from .manager import AsyncIOLoopKernelManager # noqa\nfrom .manager import IOLoopKernelManager # noqa\nfrom .restarter import AsyncIOLoopKernelRestarter # noqa\nfrom .restarter import IOLoopKernelRestarter # noqa\n
.venv\Lib\site-packages\jupyter_client\ioloop\__init__.py
__init__.py
Python
214
0.95
0
0
vue-tools
659
2024-07-21T13:37:08.099769
BSD-3-Clause
false
dbab049115fee873b70f54d366ad4c36
\n\n
.venv\Lib\site-packages\jupyter_client\ioloop\__pycache__\manager.cpython-313.pyc
manager.cpython-313.pyc
Other
5,960
0.95
0
0
react-lib
777
2024-09-04T10:18:44.636782
BSD-3-Clause
false
0a0a3d8a7b766a269e61db0222d57096
\n\n
.venv\Lib\site-packages\jupyter_client\ioloop\__pycache__\restarter.cpython-313.pyc
restarter.cpython-313.pyc
Other
4,872
0.8
0.025641
0
python-kit
898
2023-08-27T06:36:21.547017
Apache-2.0
false
f886bb4473198c1b99eeea59d3d4d14b
\n\n
.venv\Lib\site-packages\jupyter_client\ioloop\__pycache__\__init__.cpython-313.pyc
__init__.cpython-313.pyc
Other
404
0.7
0
0
react-lib
783
2024-08-25T20:21:34.315884
GPL-3.0
false
0705f2be479b7e6d804bcd4f3b9d36cd
"""Kernel Provisioner Classes"""\n# Copyright (c) Jupyter Development Team.\n# Distributed under the terms of the Modified BSD License.\nimport glob\nimport sys\nfrom os import getenv, path\nfrom typing import Any, Dict, List\n\n# See compatibility note on `group` keyword in https://docs.python.org/3/library/importlib....
.venv\Lib\site-packages\jupyter_client\provisioning\factory.py
factory.py
Python
9,651
0.95
0.165
0.064327
python-kit
785
2024-05-12T22:21:47.775868
GPL-3.0
false
3b6c958da035a4633aa1cb96359b7687
"""Kernel Provisioner Classes"""\n# Copyright (c) Jupyter Development Team.\n# Distributed under the terms of the Modified BSD License.\nimport asyncio\nimport os\nimport signal\nimport sys\nfrom typing import TYPE_CHECKING, Any, Dict, List, Optional\n\nfrom ..connect import KernelConnectionInfo, LocalPortCache\nfrom ....
.venv\Lib\site-packages\jupyter_client\provisioning\local_provisioner.py
local_provisioner.py
Python
10,055
0.95
0.252066
0.099526
react-lib
650
2024-06-01T13:51:13.541209
GPL-3.0
false
4c63179818e68b39a759665ee073a8cc
"""Kernel Provisioner Classes"""\n# Copyright (c) Jupyter Development Team.\n# Distributed under the terms of the Modified BSD License.\nimport os\nfrom abc import ABC, ABCMeta, abstractmethod\nfrom typing import Any, Dict, List, Optional, Union\n\nfrom traitlets.config import Instance, LoggingConfigurable, Unicode\n\n...
.venv\Lib\site-packages\jupyter_client\provisioning\provisioner_base.py
provisioner_base.py
Python
9,970
0.95
0.155642
0.040201
react-lib
19
2023-09-16T23:00:08.658819
BSD-3-Clause
false
4c6c5d57c3692b535dcdc8ddc5bf29b8
from .factory import KernelProvisionerFactory # noqa\nfrom .local_provisioner import LocalProvisioner # noqa\nfrom .provisioner_base import KernelProvisionerBase # noqa\n
.venv\Lib\site-packages\jupyter_client\provisioning\__init__.py
__init__.py
Python
170
0.95
0
0
vue-tools
524
2024-03-29T07:30:08.472773
GPL-3.0
false
06d4ca37c79f5ff194cafbf94276c7a7
\n\n
.venv\Lib\site-packages\jupyter_client\provisioning\__pycache__\factory.cpython-313.pyc
factory.cpython-313.pyc
Other
10,128
0.95
0.076923
0.009434
awesome-app
665
2024-01-09T14:59:07.564563
Apache-2.0
false
d9aa5f73ed87a23c97f2edecc2a1b514
\n\n
.venv\Lib\site-packages\jupyter_client\provisioning\__pycache__\local_provisioner.cpython-313.pyc
local_provisioner.cpython-313.pyc
Other
12,275
0.95
0.122642
0.019802
react-lib
860
2023-09-05T17:16:06.331793
GPL-3.0
false
5368291112faf23c0a5ec1e400099f60
\n\n
.venv\Lib\site-packages\jupyter_client\provisioning\__pycache__\provisioner_base.cpython-313.pyc
provisioner_base.cpython-313.pyc
Other
11,765
0.95
0.073171
0.004739
awesome-app
201
2023-10-26T07:14:09.913683
BSD-3-Clause
false
d88d2c9e11873ef2eb8c069353903492
\n\n
.venv\Lib\site-packages\jupyter_client\provisioning\__pycache__\__init__.cpython-313.pyc
__init__.cpython-313.pyc
Other
383
0.7
0
0
node-utils
844
2024-03-14T21:53:10.282602
BSD-3-Clause
false
eafde640eebc2e1656900a61c8a3abf0
"""Sample script showing how to do local port forwarding over paramiko.\n\nThis script connects to the requested SSH server and sets up local port\nforwarding (the openssh -L option) from a local port through a tunneled\nconnection to a destination reachable from the SSH server machine.\n"""\n#\n# This file is adapted ...
.venv\Lib\site-packages\jupyter_client\ssh\forward.py
forward.py
Python
3,560
0.95
0.166667
0.241379
react-lib
604
2024-12-05T16:11:52.860222
MIT
false
7f1eb58807a12176ea4f5408776410cd
"""Basic ssh tunnel utilities, and convenience functions for tunneling\nzeromq connections.\n"""\n# Copyright (C) 2010-2011 IPython Development Team\n# Copyright (C) 2011- PyZMQ Developers\n#\n# Redistributed from IPython under the terms of the BSD License.\nfrom __future__ import annotations\n\nimport atexit\nimport ...
.venv\Lib\site-packages\jupyter_client\ssh\tunnel.py
tunnel.py
Python
13,795
0.95
0.150224
0.042216
node-utils
908
2024-08-06T20:52:28.299524
Apache-2.0
false
add253b8d4921e6662c987e0c6278c4c
from .tunnel import * # noqa\n
.venv\Lib\site-packages\jupyter_client\ssh\__init__.py
__init__.py
Python
30
0.75
0
0
python-kit
466
2023-08-17T09:05:13.363477
MIT
false
e5a3813740dcf3752bb3f09e44f3e685
\n\n
.venv\Lib\site-packages\jupyter_client\ssh\__pycache__\forward.cpython-313.pyc
forward.cpython-313.pyc
Other
4,197
0.8
0.05
0
react-lib
418
2024-11-30T18:19:16.500160
BSD-3-Clause
false
adab939380a2443256a3056d50918200
\n\n
.venv\Lib\site-packages\jupyter_client\ssh\__pycache__\tunnel.cpython-313.pyc
tunnel.cpython-313.pyc
Other
16,169
0.95
0.064189
0.023166
node-utils
879
2024-02-14T08:10:40.771618
BSD-3-Clause
false
82c0f5ce8adbd7d4c5b677084752bbbb
\n\n
.venv\Lib\site-packages\jupyter_client\ssh\__pycache__\__init__.cpython-313.pyc
__init__.cpython-313.pyc
Other
221
0.7
0
0
node-utils
696
2024-09-01T07:23:19.557668
GPL-3.0
false
1a4a6b7c1f88acd7cf16fdcda39ace5f
\n\n
.venv\Lib\site-packages\jupyter_client\__pycache__\adapter.cpython-313.pyc
adapter.cpython-313.pyc
Other
17,706
0.95
0.019608
0.005208
node-utils
603
2023-08-11T21:26:42.937054
BSD-3-Clause
false
9ce9a2050d4a1d2a199f879e31e04b69
\n\n
.venv\Lib\site-packages\jupyter_client\__pycache__\channels.cpython-313.pyc
channels.cpython-313.pyc
Other
15,590
0.95
0.06962
0
node-utils
835
2025-02-25T01:07:30.156938
Apache-2.0
false
958e5f0d43811be4b1dde67b67db8011
\n\n
.venv\Lib\site-packages\jupyter_client\__pycache__\channelsabc.cpython-313.pyc
channelsabc.cpython-313.pyc
Other
2,429
0.85
0.128205
0
python-kit
581
2023-09-27T10:48:35.446792
Apache-2.0
false
c9d5259cb4725c4d703fc2131616aa32
\n\n
.venv\Lib\site-packages\jupyter_client\__pycache__\client.cpython-313.pyc
client.cpython-313.pyc
Other
36,900
0.95
0.101124
0.01292
python-kit
58
2023-09-14T07:42:58.231986
MIT
false
d0c28dfa9e4d8d89f8ad26bc83a0c35d
\n\n
.venv\Lib\site-packages\jupyter_client\__pycache__\clientabc.cpython-313.pyc
clientabc.cpython-313.pyc
Other
3,999
0.95
0.074074
0
python-kit
780
2024-06-29T04:49:26.806693
Apache-2.0
false
cf7b7b16701f796f5cad14ac8c334815
\n\n
.venv\Lib\site-packages\jupyter_client\__pycache__\connect.cpython-313.pyc
connect.cpython-313.pyc
Other
29,354
0.95
0.091954
0.003236
node-utils
33
2024-01-01T03:56:53.630716
Apache-2.0
false
3d921cf28573f2fe36ad84c372c9a877
\n\n
.venv\Lib\site-packages\jupyter_client\__pycache__\consoleapp.cpython-313.pyc
consoleapp.cpython-313.pyc
Other
15,827
0.95
0.070588
0.02649
vue-tools
808
2023-09-18T03:05:40.921208
Apache-2.0
false
a63c3770d115735282fed209358f844a
\n\n
.venv\Lib\site-packages\jupyter_client\__pycache__\jsonutil.cpython-313.pyc
jsonutil.cpython-313.pyc
Other
7,100
0.95
0.033708
0
node-utils
949
2024-12-11T18:20:18.138685
MIT
false
0616f2cff0c65f8cca03fba09bca68ed
\n\n
.venv\Lib\site-packages\jupyter_client\__pycache__\kernelapp.cpython-313.pyc
kernelapp.cpython-313.pyc
Other
5,762
0.8
0.017857
0.02
python-kit
134
2024-02-09T23:54:10.682528
Apache-2.0
false
017fb81e4a69ec48083c2171410ae5dc
\n\n
.venv\Lib\site-packages\jupyter_client\__pycache__\kernelspec.cpython-313.pyc
kernelspec.cpython-313.pyc
Other
19,731
0.95
0.074074
0
python-kit
68
2025-02-19T05:07:16.097758
GPL-3.0
false
9ff2663576a5074f227f8da955012074
\n\n
.venv\Lib\site-packages\jupyter_client\__pycache__\kernelspecapp.cpython-313.pyc
kernelspecapp.cpython-313.pyc
Other
16,108
0.95
0.064748
0
awesome-app
375
2024-08-27T04:57:42.483294
Apache-2.0
false
35c7f928d57b27eb119453353bea8742
\n\n
.venv\Lib\site-packages\jupyter_client\__pycache__\launcher.cpython-313.pyc
launcher.cpython-313.pyc
Other
5,299
0.95
0.04
0.011236
awesome-app
160
2024-12-12T06:28:49.086739
GPL-3.0
false
e45994911609d0cb25fbf061f44db955
\n\n
.venv\Lib\site-packages\jupyter_client\__pycache__\localinterfaces.cpython-313.pyc
localinterfaces.cpython-313.pyc
Other
13,316
0.95
0.06015
0
awesome-app
788
2023-10-30T14:57:26.391877
BSD-3-Clause
false
15ff7e7461c96cf96b5a771f7f919e70
\n\n
.venv\Lib\site-packages\jupyter_client\__pycache__\manager.cpython-313.pyc
manager.cpython-313.pyc
Other
39,848
0.95
0.051205
0.013201
node-utils
855
2023-12-16T01:30:02.849503
Apache-2.0
false
402be65f80f79efe9f867e8d40fbc293
\n\n
.venv\Lib\site-packages\jupyter_client\__pycache__\managerabc.cpython-313.pyc
managerabc.cpython-313.pyc
Other
2,668
0.95
0.061538
0
react-lib
573
2024-07-06T08:24:08.553247
MIT
false
d7df84f4afbcf12b0cf26397a4d37341
\n\n
.venv\Lib\site-packages\jupyter_client\__pycache__\multikernelmanager.cpython-313.pyc
multikernelmanager.cpython-313.pyc
Other
28,015
0.95
0.081433
0.011111
vue-tools
377
2024-05-07T07:08:09.869474
BSD-3-Clause
false
55d4b344cc18cac3d84a887b9c485dbb
\n\n
.venv\Lib\site-packages\jupyter_client\__pycache__\restarter.cpython-313.pyc
restarter.cpython-313.pyc
Other
6,815
0.8
0.078125
0
react-lib
889
2025-02-25T08:52:24.374361
Apache-2.0
false
77f3e4083a4697eae22a0eee3fa5c1dc
\n\n
.venv\Lib\site-packages\jupyter_client\__pycache__\runapp.cpython-313.pyc
runapp.cpython-313.pyc
Other
6,406
0.8
0.040541
0
react-lib
453
2023-12-16T01:32:29.582516
MIT
false
a806ab5c12820193467e92d8764d7643
\n\n
.venv\Lib\site-packages\jupyter_client\__pycache__\session.cpython-313.pyc
session.cpython-313.pyc
Other
44,186
0.95
0.067164
0.012579
node-utils
312
2024-07-03T19:26:04.888173
GPL-3.0
false
440a80f99fa6720c051431ce77ef0935
\n\n
.venv\Lib\site-packages\jupyter_client\__pycache__\threaded.cpython-313.pyc
threaded.cpython-313.pyc
Other
16,478
0.95
0.044444
0.036364
vue-tools
312
2024-07-09T15:43:40.122576
MIT
false
5d41442c8cf301f3fd3a5455a225de9f
\n\n
.venv\Lib\site-packages\jupyter_client\__pycache__\utils.cpython-313.pyc
utils.cpython-313.pyc
Other
3,669
0.95
0.095238
0
react-lib
627
2024-04-10T16:28:26.943554
BSD-3-Clause
false
9db46a9e785ccebda42ed813b437c912
\n\n
.venv\Lib\site-packages\jupyter_client\__pycache__\win_interrupt.cpython-313.pyc
win_interrupt.cpython-313.pyc
Other
2,120
0.8
0.066667
0.037037
awesome-app
878
2023-10-15T06:31:58.733707
MIT
false
e6d91956e7070f6887ebeb6dac1e40f5
\n\n
.venv\Lib\site-packages\jupyter_client\__pycache__\_version.cpython-313.pyc
_version.cpython-313.pyc
Other
977
0.8
0.142857
0
awesome-app
47
2023-07-24T04:00:08.877253
Apache-2.0
false
68191335a69b7babf4a3a0b67489e73a
\n\n
.venv\Lib\site-packages\jupyter_client\__pycache__\__init__.cpython-313.pyc
__init__.cpython-313.pyc
Other
877
0.7
0
0
awesome-app
453
2024-11-15T06:53:24.704558
Apache-2.0
false
f3efea6a9f01179f92f19b076df598ee
[console_scripts]\njupyter-kernel = jupyter_client.kernelapp:main\njupyter-kernelspec = jupyter_client.kernelspecapp:KernelSpecApp.launch_instance\njupyter-run = jupyter_client.runapp:RunApp.launch_instance\n\n[jupyter_client.kernel_provisioners]\nlocal-provisioner = jupyter_client.provisioning:LocalProvisioner\n
.venv\Lib\site-packages\jupyter_client-8.6.3.dist-info\entry_points.txt
entry_points.txt
Other
307
0.7
0
0
awesome-app
29
2025-06-17T18:29:16.616654
MIT
false
54e3ef3c1a2cacf82ec473b8847bb643
pip\n
.venv\Lib\site-packages\jupyter_client-8.6.3.dist-info\INSTALLER
INSTALLER
Other
4
0.5
0
0
react-lib
920
2024-02-23T06:42:40.383155
BSD-3-Clause
false
365c9bfeb7d89244f2ce01c1de44cb85
Metadata-Version: 2.3\nName: jupyter_client\nVersion: 8.6.3\nSummary: Jupyter protocol implementation and client libraries\nProject-URL: Homepage, https://jupyter.org\nProject-URL: Documentation, https://jupyter-client.readthedocs.io/\nProject-URL: Source, https://github.com/jupyter/jupyter_client\nAuthor-email: Jupyte...
.venv\Lib\site-packages\jupyter_client-8.6.3.dist-info\METADATA
METADATA
Other
8,311
0.95
0.043011
0.061644
react-lib
445
2024-03-27T09:50:57.112458
Apache-2.0
false
3539f990bda44518ec5e73537347eefd
../../Scripts/jupyter-kernel.exe,sha256=gqA2ZXJ7Rcc8W67-S3MYPECLFes50HO-jvyNdGY-GSU,108425\n../../Scripts/jupyter-kernelspec.exe,sha256=qZZlEQ6bM1m_0V3sruS96HqMCnAmgLoMTbtp4MQLing,108463\n../../Scripts/jupyter-run.exe,sha256=j0huoYxn6wSVmZuhbpoWMZVZYjasQV8R07Dovj8vHOI,108442\njupyter_client-8.6.3.dist-info/INSTALLER,sh...
.venv\Lib\site-packages\jupyter_client-8.6.3.dist-info\RECORD
RECORD
Other
6,506
0.7
0
0
python-kit
110
2024-07-14T06:54:19.681283
GPL-3.0
false
7a1ac0bfba3ec75f2bfce686f5c9f70b
Wheel-Version: 1.0\nGenerator: hatchling 1.25.0\nRoot-Is-Purelib: true\nTag: py3-none-any\n
.venv\Lib\site-packages\jupyter_client-8.6.3.dist-info\WHEEL
WHEEL
Other
87
0.5
0
0
vue-tools
388
2023-07-27T17:02:00.668116
BSD-3-Clause
false
52adfa0c417902ee8f0c3d1ca2372ac3
BSD 3-Clause License\n\n- Copyright (c) 2001-2015, IPython Development Team\n- Copyright (c) 2015-, Jupyter Development Team\n\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n1. Redistributions of...
.venv\Lib\site-packages\jupyter_client-8.6.3.dist-info\licenses\LICENSE
LICENSE
Other
1,588
0.7
0
0
awesome-app
209
2024-07-09T21:17:52.057142
MIT
false
083556a9912a35360dae8281fb57e886
""" A minimal application using the ZMQ-based terminal IPython frontend.\n\nThis is not a complete console app, as subprocess will not be able to receive\ninput, there is no real readline support, among other limitations.\n"""\n\n# Copyright (c) IPython Development Team.\n# Distributed under the terms of the Modified B...
.venv\Lib\site-packages\jupyter_console\app.py
app.py
Python
5,054
0.95
0.089744
0.188034
awesome-app
593
2024-01-26T11:25:56.258507
Apache-2.0
false
1f31823404071596478529447930dffe
# -*- coding: utf-8 -*-\n"""Adapt readline completer interface to make ZMQ request."""\n\n# Copyright (c) IPython Development Team.\n# Distributed under the terms of the Modified BSD License.\n\nfrom traitlets.config import Configurable\nfrom traitlets import Float\n\nfrom jupyter_console.utils import run_sync\n\n\ncla...
.venv\Lib\site-packages\jupyter_console\completer.py
completer.py
Python
1,399
0.95
0.116279
0.166667
python-kit
131
2025-04-05T00:58:22.613656
GPL-3.0
false
e60e805052c14a98626cef76c9446d75
"""IPython terminal interface using prompt_toolkit in place of readline"""\nfrom __future__ import print_function\n\nimport asyncio\nimport base64\nimport errno\nfrom getpass import getpass\nfrom io import BytesIO\nimport os\nfrom queue import Empty\nimport signal\nimport subprocess\nimport sys\nfrom tempfile import Te...
.venv\Lib\site-packages\jupyter_console\ptshell.py
ptshell.py
Python
38,655
0.95
0.173077
0.072072
vue-tools
977
2025-05-08T20:57:50.166611
MIT
false
3d01154085ca9924ae62832782f02f9b
import inspect\nimport typing as t\nfrom jupyter_core.utils import run_sync as _run_sync, ensure_async # noqa\n\n\nT = t.TypeVar("T")\n\n\ndef run_sync(coro: t.Callable[..., t.Union[T, t.Awaitable[T]]]) -> t.Callable[..., T]:\n """Wraps coroutine in a function that blocks until it has executed.\n\n Parameters\n ...
.venv\Lib\site-packages\jupyter_console\utils.py
utils.py
Python
616
0.95
0.24
0
python-kit
539
2025-01-07T17:42:54.125293
BSD-3-Clause
false
76a5b25ce1248035d415a949d0dd5a42
""" ZMQ Kernel History accessor and manager. """\n# -----------------------------------------------------------------------------\n# Copyright (C) 2010-2011 The IPython Development Team.\n#\n# Distributed under the terms of the BSD License.\n#\n# The full license is in the file LICENSE, distributed with this softwar...
.venv\Lib\site-packages\jupyter_console\zmqhistory.py
zmqhistory.py
Python
3,461
0.95
0.173913
0.168831
node-utils
808
2025-06-05T21:45:45.294610
BSD-3-Clause
false
f2b81a92bff7f6b4524216a5c7265b28
import re\nfrom typing import List, Union\n\n__version__ = "6.6.3"\n\n# Build up version_info tuple for backwards compatibility\npattern = r'(?P<major>\d+).(?P<minor>\d+).(?P<patch>\d+)(?P<rest>.*)'\nmatch = re.match(pattern, __version__)\nif match:\n parts: List[Union[int, str]] = [int(match[part]) for part in ['ma...
.venv\Lib\site-packages\jupyter_console\_version.py
_version.py
Python
443
0.95
0.266667
0.076923
react-lib
749
2024-11-22T20:21:50.087235
MIT
false
b20e6d42e44f900c3d3f8fb22a3d7dda
"""Jupyter terminal console"""\n\nfrom ._version import version_info, __version__ # noqa\n
.venv\Lib\site-packages\jupyter_console\__init__.py
__init__.py
Python
88
0.75
0
0
python-kit
781
2025-05-18T13:56:35.974638
Apache-2.0
false
d0283ddfb6f5972caa9a69286d05a281
from jupyter_console import app\n\nif __name__ == '__main__':\n app.launch_new_instance()\n
.venv\Lib\site-packages\jupyter_console\__main__.py
__main__.py
Python
90
0.65
0.25
0
node-utils
734
2024-09-17T09:42:52.385859
BSD-3-Clause
false
edcd4750feae4a55581caaf9878b9a93
import pytest\n\n\n@pytest.fixture(autouse=True)\ndef env_setup(monkeypatch):\n monkeypatch.setenv("JUPYTER_CONSOLE_TEST", "1")\n
.venv\Lib\site-packages\jupyter_console\tests\conftest.py
conftest.py
Python
126
0.85
0.166667
0
python-kit
587
2025-05-09T03:48:38.054605
MIT
true
c1ed42528824410b23533dcd07b1ab94
"""Tests for two-process terminal frontend"""\n\n# Copyright (c) Jupyter Development Team.\n# Distributed under the terms of the Modified BSD License.\n\nimport os\nimport shutil\nimport sys\nimport tempfile\nfrom subprocess import check_output\n\nfrom flaky import flaky\nimport pytest\n\nfrom traitlets.tests.utils imp...
.venv\Lib\site-packages\jupyter_console\tests\test_console.py
test_console.py
Python
2,692
0.95
0.113402
0.105263
node-utils
199
2025-05-15T00:02:34.862859
MIT
true
2e7c78a7c1e423df4a9470d93d6797a1
# Copyright (c) IPython Development Team.\n# Distributed under the terms of the Modified BSD License.\n\nimport base64\nimport os\nimport sys\nfrom tempfile import TemporaryDirectory\nimport unittest\nfrom unittest.mock import patch\n\nimport pytest\n\nfrom jupyter_console.ptshell import ZMQTerminalInteractiveShell\n\n...
.venv\Lib\site-packages\jupyter_console\tests\test_image_handler.py
test_image_handler.py
Python
3,310
0.95
0.147059
0.04
react-lib
129
2023-08-22T15:02:20.482533
BSD-3-Clause
true
4902a46c4327aa56f308f17a820e2502
#-----------------------------------------------------------------------------\n# Copyright (C) 2012 The IPython Development Team\n#\n# Distributed under the terms of the BSD License. The full license is in\n# the file LICENSE, distributed as part of this software.\n#----------------------------------------------------...
.venv\Lib\site-packages\jupyter_console\tests\writetofile.py
writetofile.py
Python
783
0.95
0.103448
0.285714
python-kit
331
2024-07-30T10:55:41.051464
Apache-2.0
true
e1e552492dc961dadec67800c2a0fab4
\n\n
.venv\Lib\site-packages\jupyter_console\tests\__pycache__\conftest.cpython-313.pyc
conftest.cpython-313.pyc
Other
495
0.7
0
0
vue-tools
537
2024-04-01T05:42:58.840411
BSD-3-Clause
true
99618d00bfd90a179cfe6cf9ea0f0827
\n\n
.venv\Lib\site-packages\jupyter_console\tests\__pycache__\test_console.cpython-313.pyc
test_console.cpython-313.pyc
Other
4,633
0.95
0.021739
0.02381
python-kit
619
2024-03-07T13:38:46.027309
Apache-2.0
true
cd0f39fc637698d0fe6e087f25a8af80
\n\n
.venv\Lib\site-packages\jupyter_console\tests\__pycache__\test_image_handler.cpython-313.pyc
test_image_handler.cpython-313.pyc
Other
6,996
0.95
0.015152
0
node-utils
703
2025-04-22T15:59:12.123454
MIT
true
1dfd3927049bf719ecbcdfaf6a61ca0f
\n\n
.venv\Lib\site-packages\jupyter_console\tests\__pycache__\writetofile.cpython-313.pyc
writetofile.cpython-313.pyc
Other
841
0.8
0.071429
0
awesome-app
989
2024-03-02T22:49:23.730010
MIT
true
11e04f9fdc7571f917b05b8c1355574e
\n\n
.venv\Lib\site-packages\jupyter_console\tests\__pycache__\__init__.cpython-313.pyc
__init__.cpython-313.pyc
Other
196
0.7
0
0
react-lib
954
2024-11-27T05:37:02.245349
MIT
true
165360974f68a598c4b971ec8d24d9b4
\n\n
.venv\Lib\site-packages\jupyter_console\__pycache__\app.cpython-313.pyc
app.cpython-313.pyc
Other
5,925
0.95
0
0
node-utils
32
2025-02-22T00:46:11.731992
BSD-3-Clause
false
165f351b49069e7d9e9534c6bdce0442
\n\n
.venv\Lib\site-packages\jupyter_console\__pycache__\completer.cpython-313.pyc
completer.cpython-313.pyc
Other
2,013
0.7
0.038462
0
vue-tools
784
2025-06-16T08:42:52.328045
GPL-3.0
false
8beb4c382abacc14e5a339f18b4a11b3
\n\n
.venv\Lib\site-packages\jupyter_console\__pycache__\ptshell.cpython-313.pyc
ptshell.cpython-313.pyc
Other
49,273
0.95
0.046256
0.009592
node-utils
877
2023-09-20T14:21:26.885782
BSD-3-Clause
false
e7fb7c19a89bc3023d0fe436290e46df
\n\n
.venv\Lib\site-packages\jupyter_console\__pycache__\utils.cpython-313.pyc
utils.cpython-313.pyc
Other
1,217
0.95
0.25
0
awesome-app
961
2024-08-31T15:05:41.317316
BSD-3-Clause
false
c412e5d620a08aa5ce0fa61c806d2953
\n\n
.venv\Lib\site-packages\jupyter_console\__pycache__\zmqhistory.cpython-313.pyc
zmqhistory.cpython-313.pyc
Other
3,678
0.8
0.045455
0
react-lib
160
2024-03-27T17:23:32.807296
GPL-3.0
false
6430676ca0567743836a9b8321a9ee57
\n\n
.venv\Lib\site-packages\jupyter_console\__pycache__\_version.cpython-313.pyc
_version.cpython-313.pyc
Other
823
0.8
0
0
vue-tools
484
2024-04-11T14:02:17.351708
GPL-3.0
false
34e9174e8ea92df9d65f47b82a472d5a
\n\n
.venv\Lib\site-packages\jupyter_console\__pycache__\__init__.cpython-313.pyc
__init__.cpython-313.pyc
Other
305
0.7
0
0
python-kit
624
2023-10-11T06:55:55.239637
BSD-3-Clause
false
5a1204535348ad0b97a2724ca92cd74f
\n\n
.venv\Lib\site-packages\jupyter_console\__pycache__\__main__.cpython-313.pyc
__main__.cpython-313.pyc
Other
350
0.7
0
0
vue-tools
904
2023-10-21T15:33:17.635246
MIT
false
02f8dd998ec0f98546baf9b20ac7eb3f
[console_scripts]\njupyter-console = jupyter_console.app:main\n
.venv\Lib\site-packages\jupyter_console-6.6.3.dist-info\entry_points.txt
entry_points.txt
Other
61
0.5
0
0
node-utils
103
2024-01-04T13:25:50.081918
Apache-2.0
false
2cde917dc2e9a531a7cf5602ab04bbc2
pip\n
.venv\Lib\site-packages\jupyter_console-6.6.3.dist-info\INSTALLER
INSTALLER
Other
4
0.5
0
0
react-lib
308
2024-09-05T01:35:02.086118
GPL-3.0
false
365c9bfeb7d89244f2ce01c1de44cb85
Metadata-Version: 2.1\nName: jupyter-console\nVersion: 6.6.3\nSummary: Jupyter terminal console\nProject-URL: Homepage, https://jupyter.org\nAuthor-email: Jupyter Development Team <jupyter@googlegroups.com>\nLicense: BSD 3-Clause License\n \n - Copyright (c) 2001-2015, IPython Development Team\n - ...
.venv\Lib\site-packages\jupyter_console-6.6.3.dist-info\METADATA
METADATA
Other
5,833
0.95
0.035211
0.064815
node-utils
149
2024-09-04T00:32:17.881411
BSD-3-Clause
false
9096fb57bce2d25427384597d10584cc
../../Scripts/jupyter-console.exe,sha256=__ankPmoXkwRfJrRyBHAtfKyr9Z-SX9vITjcsLZYhIU,108420\njupyter_console-6.6.3.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4\njupyter_console-6.6.3.dist-info/METADATA,sha256=Jl9bu4rvnFeIsCg9DUYTvhdYWKtajEOAiKl-Ew04KD0,5833\njupyter_console-6.6.3.dist-info/R...
.venv\Lib\site-packages\jupyter_console-6.6.3.dist-info\RECORD
RECORD
Other
2,537
0.7
0
0
python-kit
857
2025-06-10T05:41:10.088305
Apache-2.0
false
45445c64e10071ee4e191ea3ee86f106
Wheel-Version: 1.0\nGenerator: hatchling 1.13.0\nRoot-Is-Purelib: true\nTag: py3-none-any\n
.venv\Lib\site-packages\jupyter_console-6.6.3.dist-info\WHEEL
WHEEL
Other
87
0.5
0
0
awesome-app
445
2025-06-20T20:00:00.664103
MIT
false
fe8a0d41a93fac4985beed707a0d84e4
BSD 3-Clause License\n\n- Copyright (c) 2001-2015, IPython Development Team\n- Copyright (c) 2015-, Jupyter Development Team\n\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n1. Redistributions of...
.venv\Lib\site-packages\jupyter_console-6.6.3.dist-info\licenses\LICENSE
LICENSE
Other
1,588
0.7
0
0
react-lib
362
2025-04-28T04:16:52.589190
Apache-2.0
false
083556a9912a35360dae8281fb57e886
"""\nA base Application class for Jupyter applications.\n\nAll Jupyter applications should inherit from this.\n"""\n\n# Copyright (c) Jupyter Development Team.\n# Distributed under the terms of the Modified BSD License.\nfrom __future__ import annotations\n\nimport logging\nimport os\nimport sys\nimport typing as t\nfr...
.venv\Lib\site-packages\jupyter_core\application.py
application.py
Python
10,398
0.95
0.189441
0.069767
vue-tools
999
2025-06-17T08:00:19.967520
GPL-3.0
false
d83c83161366bf15f73481f1bfd711ee
# PYTHON_ARGCOMPLETE_OK\n"""The root `jupyter` command.\n\nThis does nothing other than dispatch to subcommands or output path info.\n"""\n\n# Copyright (c) Jupyter Development Team.\n# Distributed under the terms of the Modified BSD License.\nfrom __future__ import annotations\n\nimport argparse\nimport errno\nimport ...
.venv\Lib\site-packages\jupyter_core\command.py
command.py
Python
15,721
0.95
0.191176
0.110482
awesome-app
956
2023-07-21T08:21:27.626986
Apache-2.0
false
5fd4fdbbf84c56e830944452e1cb9e3b
# PYTHON_ARGCOMPLETE_OK\n"""Migrating IPython < 4.0 to Jupyter\n\nThis *copies* configuration and resources to their new locations in Jupyter\n\nMigrations:\n\n- .ipython/\n - nbextensions -> JUPYTER_DATA_DIR/nbextensions\n - kernels -> JUPYTER_DATA_DIR/kernels\n\n- .ipython/profile_default/\n - static/custom -> .j...
.venv\Lib\site-packages\jupyter_core\migrate.py
migrate.py
Python
8,696
0.95
0.170213
0.050459
python-kit
961
2024-04-14T14:38:18.758769
MIT
false
5f9c9a5f93b538529f51c5910f666f05
"""Path utility functions."""\n\n# Copyright (c) Jupyter Development Team.\n# Distributed under the terms of the Modified BSD License.\n\n# Derived from IPython.utils.path, which is\n# Copyright (c) IPython Development Team.\n# Distributed under the terms of the Modified BSD License.\nfrom __future__ import annotations...
.venv\Lib\site-packages\jupyter_core\paths.py
paths.py
Python
38,804
0.95
0.161818
0.091314
vue-tools
542
2024-11-13T06:10:31.870896
MIT
false
082c0db314acad35d437f50312619694