Uploaded Test files
This commit is contained in:
parent
f584ad9d97
commit
2e81cb7d99
16627 changed files with 2065359 additions and 102444 deletions
|
@ -0,0 +1,60 @@
|
|||
# Licensing terms
|
||||
|
||||
This project is licensed under the terms of the Modified BSD License
|
||||
(also known as New or Revised or 3-Clause BSD), as follows:
|
||||
|
||||
- Copyright (c) 2001-2015, IPython Development Team
|
||||
- Copyright (c) 2015-, Jupyter Development Team
|
||||
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
Redistributions of source code must retain the above copyright notice, this
|
||||
list of conditions and the following disclaimer.
|
||||
|
||||
Redistributions in binary form must reproduce the above copyright notice, this
|
||||
list of conditions and the following disclaimer in the documentation and/or
|
||||
other materials provided with the distribution.
|
||||
|
||||
Neither the name of the Jupyter Development Team nor the names of its
|
||||
contributors may be used to endorse or promote products derived from this
|
||||
software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
||||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
## About the Jupyter Development Team
|
||||
|
||||
The Jupyter Development Team is the set of all contributors to the Jupyter project.
|
||||
This includes all of the Jupyter subprojects.
|
||||
|
||||
The core team that coordinates development on GitHub can be found here:
|
||||
https://github.com/jupyter/.
|
||||
|
||||
## Our Copyright Policy
|
||||
|
||||
Jupyter uses a shared copyright model. Each contributor maintains copyright
|
||||
over their contributions to Jupyter. But, it is important to note that these
|
||||
contributions are typically only changes to the repositories. Thus, the Jupyter
|
||||
source code, in its entirety is not the copyright of any single person or
|
||||
institution. Instead, it is the collective copyright of the entire Jupyter
|
||||
Development Team. If individual contributors want to maintain a record of what
|
||||
changes/contributions they have specific copyright on, they should indicate
|
||||
their copyright in the commit message of the change, when they commit the
|
||||
change to one of the Jupyter repositories.
|
||||
|
||||
With this in mind, the following banner should be used in any source code file
|
||||
to indicate the copyright and license terms:
|
||||
|
||||
# Copyright (c) Jupyter Development Team.
|
||||
# Distributed under the terms of the Modified BSD License.
|
|
@ -0,0 +1 @@
|
|||
pip
|
|
@ -0,0 +1,92 @@
|
|||
Metadata-Version: 2.1
|
||||
Name: jupyter-client
|
||||
Version: 6.1.7
|
||||
Summary: Jupyter protocol implementation and client libraries
|
||||
Home-page: https://jupyter.org
|
||||
Author: Jupyter Development Team
|
||||
Author-email: jupyter@googlegroups.com
|
||||
License: BSD
|
||||
Project-URL: Documentation, https://jupyter-client.readthedocs.io
|
||||
Project-URL: Source, https://github.com/jupyter/jupyter_client/
|
||||
Project-URL: Tracker, https://github.com/jupyter/jupyter_client/issues
|
||||
Keywords: Interactive,Interpreter,Shell,Web
|
||||
Platform: Linux
|
||||
Platform: Mac OS X
|
||||
Platform: Windows
|
||||
Classifier: Framework :: Jupyter
|
||||
Classifier: Intended Audience :: Developers
|
||||
Classifier: Intended Audience :: Education
|
||||
Classifier: Intended Audience :: System Administrators
|
||||
Classifier: Intended Audience :: Science/Research
|
||||
Classifier: License :: OSI Approved :: BSD License
|
||||
Classifier: Operating System :: OS Independent
|
||||
Classifier: Programming Language :: Python
|
||||
Classifier: Programming Language :: Python :: 3
|
||||
Classifier: Programming Language :: Python :: 3.5
|
||||
Classifier: Programming Language :: Python :: 3.6
|
||||
Classifier: Programming Language :: Python :: 3.7
|
||||
Classifier: Programming Language :: Python :: 3.8
|
||||
Requires-Python: >=3.5
|
||||
Description-Content-Type: text/markdown
|
||||
Requires-Dist: traitlets
|
||||
Requires-Dist: jupyter-core (>=4.6.0)
|
||||
Requires-Dist: pyzmq (>=13)
|
||||
Requires-Dist: python-dateutil (>=2.1)
|
||||
Requires-Dist: tornado (>=4.1)
|
||||
Provides-Extra: test
|
||||
Requires-Dist: ipykernel ; extra == 'test'
|
||||
Requires-Dist: ipython ; extra == 'test'
|
||||
Requires-Dist: mock ; extra == 'test'
|
||||
Requires-Dist: pytest ; extra == 'test'
|
||||
Requires-Dist: pytest-asyncio ; extra == 'test'
|
||||
Requires-Dist: async-generator ; extra == 'test'
|
||||
Requires-Dist: pytest-timeout ; extra == 'test'
|
||||
|
||||
# Jupyter Client
|
||||
|
||||
[](https://landscape.io/github/jupyter/jupyter_client/master)
|
||||
|
||||
|
||||
`jupyter_client` contains the reference implementation of the [Jupyter protocol][].
|
||||
It also provides client and kernel management APIs for working with kernels.
|
||||
|
||||
It also provides the `jupyter kernelspec` entrypoint
|
||||
for installing kernelspecs for use with Jupyter frontends.
|
||||
|
||||
[Jupyter protocol]: https://jupyter-client.readthedocs.io/en/latest/messaging.html
|
||||
|
||||
|
||||
# Development Setup
|
||||
|
||||
The [Jupyter Contributor Guides](http://jupyter.readthedocs.io/en/latest/contributor/content-contributor.html) provide extensive information on contributing code or documentation to Jupyter projects. The limited instructions below for setting up a development environment are for your convenience.
|
||||
|
||||
## Coding
|
||||
|
||||
You'll need Python and `pip` on the search path. Clone the Jupyter Client git repository to your computer, for example in `/my/project/jupyter_client`.
|
||||
Now create an [editable install](https://pip.pypa.io/en/stable/reference/pip_install/#editable-installs)
|
||||
and download the dependencies of code and test suite by executing:
|
||||
|
||||
cd /my/projects/jupyter_client/
|
||||
pip install -e .[test]
|
||||
py.test
|
||||
|
||||
The last command runs the test suite to verify the setup. During development, you can pass filenames to `py.test`, and it will execute only those tests.
|
||||
|
||||
## Documentation
|
||||
|
||||
The documentation of Jupyter Client is generated from the files in `docs/` using Sphinx. Instructions for setting up Sphinx with a selection of optional modules are in the [Documentation Guide](http://jupyter.readthedocs.io/en/latest/contrib_docs/index.html). You'll also need the `make` command.
|
||||
For a minimal Sphinx installation to process the Jupyter Client docs, execute:
|
||||
|
||||
pip install ipykernel sphinx sphinx_rtd_theme
|
||||
|
||||
The following commands build the documentation in HTML format and check for broken links:
|
||||
|
||||
cd /my/projects/jupyter_client/docs/
|
||||
make html linkcheck
|
||||
|
||||
Point your browser to the following URL to access the generated documentation:
|
||||
|
||||
_file:///my/projects/jupyter\_client/docs/\_build/html/index.html_
|
||||
|
||||
|
||||
|
112
venv/Lib/site-packages/jupyter_client-6.1.7.dist-info/RECORD
Normal file
112
venv/Lib/site-packages/jupyter_client-6.1.7.dist-info/RECORD
Normal file
|
@ -0,0 +1,112 @@
|
|||
../../Scripts/jupyter-kernel.exe,sha256=RtyoerUzs0fWh_6tLvjdQRsplAGtcPzXwum2nnkEloY,97239
|
||||
../../Scripts/jupyter-kernelspec.exe,sha256=fp8jk0wSqc6NtzE-6JGugU1-ECcpgU6o1XIzKDxAG0M,97277
|
||||
../../Scripts/jupyter-run.exe,sha256=Gpm3Kc8-OSmXy8AOWAEYJxmhzziWrQQ8xhHrAv0PfQw,97256
|
||||
jupyter_client-6.1.7.dist-info/COPYING.md,sha256=qpOlS3g-w8Lq_llp0beUf0J6eBOEZVGuZaUuH6VIn0I,2888
|
||||
jupyter_client-6.1.7.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
||||
jupyter_client-6.1.7.dist-info/METADATA,sha256=tCTdYRDkFPMDD9wPJdfW7G3Wn9iKMozHRuJtZSmtnjg,3880
|
||||
jupyter_client-6.1.7.dist-info/RECORD,,
|
||||
jupyter_client-6.1.7.dist-info/WHEEL,sha256=g4nMs7d-Xl9-xC9XovUrsDHGXt-FT0E17Yqo92DEfvY,92
|
||||
jupyter_client-6.1.7.dist-info/entry_points.txt,sha256=4Rhe7Qim9UFpD-xxjkTXWEJBIYSA1RdqE4NzIm70i1o,205
|
||||
jupyter_client-6.1.7.dist-info/top_level.txt,sha256=kTaXQk6cEqTor71E1CPWtT0z-nNrj3l0CtgCeszvds4,15
|
||||
jupyter_client/__init__.py,sha256=Hk1iXgljelFovCzEn7OlVNMgKVlN3y4QoMS9Wd9ac8c,458
|
||||
jupyter_client/__pycache__/__init__.cpython-36.pyc,,
|
||||
jupyter_client/__pycache__/_version.cpython-36.pyc,,
|
||||
jupyter_client/__pycache__/adapter.cpython-36.pyc,,
|
||||
jupyter_client/__pycache__/channels.cpython-36.pyc,,
|
||||
jupyter_client/__pycache__/channelsabc.cpython-36.pyc,,
|
||||
jupyter_client/__pycache__/client.cpython-36.pyc,,
|
||||
jupyter_client/__pycache__/clientabc.cpython-36.pyc,,
|
||||
jupyter_client/__pycache__/connect.cpython-36.pyc,,
|
||||
jupyter_client/__pycache__/consoleapp.cpython-36.pyc,,
|
||||
jupyter_client/__pycache__/jsonutil.cpython-36.pyc,,
|
||||
jupyter_client/__pycache__/kernelapp.cpython-36.pyc,,
|
||||
jupyter_client/__pycache__/kernelspec.cpython-36.pyc,,
|
||||
jupyter_client/__pycache__/kernelspecapp.cpython-36.pyc,,
|
||||
jupyter_client/__pycache__/launcher.cpython-36.pyc,,
|
||||
jupyter_client/__pycache__/localinterfaces.cpython-36.pyc,,
|
||||
jupyter_client/__pycache__/manager.cpython-36.pyc,,
|
||||
jupyter_client/__pycache__/managerabc.cpython-36.pyc,,
|
||||
jupyter_client/__pycache__/multikernelmanager.cpython-36.pyc,,
|
||||
jupyter_client/__pycache__/restarter.cpython-36.pyc,,
|
||||
jupyter_client/__pycache__/runapp.cpython-36.pyc,,
|
||||
jupyter_client/__pycache__/session.cpython-36.pyc,,
|
||||
jupyter_client/__pycache__/threaded.cpython-36.pyc,,
|
||||
jupyter_client/__pycache__/win_interrupt.cpython-36.pyc,,
|
||||
jupyter_client/_version.py,sha256=XrLQ3cw-2alb4Fnj_ZIYLYjhytEC1_SobYt1LgNnMpw,155
|
||||
jupyter_client/adapter.py,sha256=uyhXgw__ajRw7LK7512Z_wslKaJrD4-hm0VmQCvZXZw,12442
|
||||
jupyter_client/asynchronous/__init__.py,sha256=sfhpti9jZ_RuDYsfZ_wOGdzptw66kl9yop-Se92qVT0,38
|
||||
jupyter_client/asynchronous/__pycache__/__init__.cpython-36.pyc,,
|
||||
jupyter_client/asynchronous/__pycache__/channels.cpython-36.pyc,,
|
||||
jupyter_client/asynchronous/__pycache__/client.cpython-36.pyc,,
|
||||
jupyter_client/asynchronous/channels.py,sha256=HHXOYbrRbigHPT3War0L6c7V9klGjj4DMkr_OW_yaXM,2152
|
||||
jupyter_client/asynchronous/client.py,sha256=rxfPRuzlEH_T8l-gxjd4cQCcKHOQEStjpYkbnXohFvA,14695
|
||||
jupyter_client/blocking/__init__.py,sha256=CmNmUa1oDPXMCs7ZoG7PBrudaQ1hiIemXKjBNUkW6sU,40
|
||||
jupyter_client/blocking/__pycache__/__init__.cpython-36.pyc,,
|
||||
jupyter_client/blocking/__pycache__/channels.cpython-36.pyc,,
|
||||
jupyter_client/blocking/__pycache__/client.cpython-36.pyc,,
|
||||
jupyter_client/blocking/channels.py,sha256=5jYMMlwbvkLJnHSwkya4ad_ONuEr-upmJqXI_EQjIkU,2276
|
||||
jupyter_client/blocking/client.py,sha256=zYCvzm3qP6-9AYXfDceG0d2f3PXTEGPLMVtkH_2Ekb8,12406
|
||||
jupyter_client/channels.py,sha256=PJnsmt4EsCMSC3JV-4k_SkoJMWxWdxYlxQxAtAHPbq0,7001
|
||||
jupyter_client/channelsabc.py,sha256=FDGYCONNc-pDs-0x6mn7-s79tUN4dW__v88769erzbI,877
|
||||
jupyter_client/client.py,sha256=X8taCC4AeNg-9ayHOFvaVrKczgC7Ln-AT0CWOPDUZpI,16500
|
||||
jupyter_client/clientabc.py,sha256=-W_e4hoUQ4NNIZfmwIIGOX4qU-sa0uWWUQWQdTl9nUY,2201
|
||||
jupyter_client/connect.py,sha256=kgZBzj_5pnJLeCGwKGui7c5r5rCVD_TScJZdLG6GdsQ,19954
|
||||
jupyter_client/consoleapp.py,sha256=Mu6syJfka3b8si8zxWzSRjzpP5BvewNU1Aico2b1uV4,13346
|
||||
jupyter_client/ioloop/__init__.py,sha256=3oZYYf4eCc8xcsMwdMrAoe0gdttOfMd01-6FYAvC_Go,140
|
||||
jupyter_client/ioloop/__pycache__/__init__.cpython-36.pyc,,
|
||||
jupyter_client/ioloop/__pycache__/manager.cpython-36.pyc,,
|
||||
jupyter_client/ioloop/__pycache__/restarter.cpython-36.pyc,,
|
||||
jupyter_client/ioloop/manager.py,sha256=Zph3MZyNLi-iAErFvi3AFfZWOBq-a-PkdVA7XJuXZaA,3398
|
||||
jupyter_client/ioloop/restarter.py,sha256=uB-0kTWu6d_uCutd1kwkP2Cl_RfU7KkXnYMED7DV_Ag,2664
|
||||
jupyter_client/jsonutil.py,sha256=qIDzHSv5bm1CyF19f_gFYkfrBmWEC16_pn-I-xaaCm8,2864
|
||||
jupyter_client/kernelapp.py,sha256=jsSA3Qp1Vx8NHBpUDMI9CMp0E8vUSMxDd4HoZXLbPBw,2595
|
||||
jupyter_client/kernelspec.py,sha256=dfh2f7ITUhf5gP6n04sn-hqzMY0KHKL00GSzYZgATZc,13251
|
||||
jupyter_client/kernelspecapp.py,sha256=q1VnQL3vsXIg76B2lhW1unjQxTWEqbq3iB3b_jMJpvE,10067
|
||||
jupyter_client/launcher.py,sha256=POh4pf9moMIeGeGhOfGfOmLmeZPVM0Ellj0rTYw0SUk,5636
|
||||
jupyter_client/localinterfaces.py,sha256=osnqL-2EIb1EyBRO8dKc_TxrR-WJZr4iEAf5ZYVxqqU,7872
|
||||
jupyter_client/manager.py,sha256=rgEWU6o60dGwFv5EC7S0YMyew6TdN6B0aIOrdOlDW64,31290
|
||||
jupyter_client/managerabc.py,sha256=fCu52oyE16_tZ8NVxl4pkyGBj9L_aApnlgeu_9iTd3o,1150
|
||||
jupyter_client/multikernelmanager.py,sha256=ljelMpThvR2T_26F0TdNae4ZcxvSAk_iBqyq0_4qU8w,17852
|
||||
jupyter_client/restarter.py,sha256=LXCaPEOOAVcQeCdB7ziZL043PDr-gSDs4smBOhZs1Co,4051
|
||||
jupyter_client/runapp.py,sha256=3cG-HgO_HhGAAjkXjCfNTKbIDA30ERPHDCjJozHyI-I,4203
|
||||
jupyter_client/session.py,sha256=H4i564O-rAbt1rlkQHNl78HM4k27myLHO67nAQ7pDrM,34225
|
||||
jupyter_client/ssh/__init__.py,sha256=Lm8thTdGdNL5Z82i2X67x4XqQwb7xV3WaNrFWVcKWpk,40
|
||||
jupyter_client/ssh/__pycache__/__init__.cpython-36.pyc,,
|
||||
jupyter_client/ssh/__pycache__/forward.cpython-36.pyc,,
|
||||
jupyter_client/ssh/__pycache__/tunnel.cpython-36.pyc,,
|
||||
jupyter_client/ssh/forward.py,sha256=VkKt321JnnsNUFzC3gZUnh5p396bBlKkBS5Bqw9Iwu8,3424
|
||||
jupyter_client/ssh/tunnel.py,sha256=pbPEt2AAd3eqaknb3YfBWn52zikKI6bsDfy1HICAXp4,12607
|
||||
jupyter_client/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
||||
jupyter_client/tests/__pycache__/__init__.cpython-36.pyc,,
|
||||
jupyter_client/tests/__pycache__/signalkernel.cpython-36.pyc,,
|
||||
jupyter_client/tests/__pycache__/test_adapter.cpython-36.pyc,,
|
||||
jupyter_client/tests/__pycache__/test_client.cpython-36.pyc,,
|
||||
jupyter_client/tests/__pycache__/test_connect.cpython-36.pyc,,
|
||||
jupyter_client/tests/__pycache__/test_jsonutil.cpython-36.pyc,,
|
||||
jupyter_client/tests/__pycache__/test_kernelapp.cpython-36.pyc,,
|
||||
jupyter_client/tests/__pycache__/test_kernelmanager.cpython-36.pyc,,
|
||||
jupyter_client/tests/__pycache__/test_kernelspec.cpython-36.pyc,,
|
||||
jupyter_client/tests/__pycache__/test_localinterfaces.cpython-36.pyc,,
|
||||
jupyter_client/tests/__pycache__/test_manager.cpython-36.pyc,,
|
||||
jupyter_client/tests/__pycache__/test_multikernelmanager.cpython-36.pyc,,
|
||||
jupyter_client/tests/__pycache__/test_public_api.cpython-36.pyc,,
|
||||
jupyter_client/tests/__pycache__/test_session.cpython-36.pyc,,
|
||||
jupyter_client/tests/__pycache__/test_ssh.cpython-36.pyc,,
|
||||
jupyter_client/tests/__pycache__/utils.cpython-36.pyc,,
|
||||
jupyter_client/tests/signalkernel.py,sha256=UcC4kTooIrvNYn24-kyd9LcqPoySIl4wljmjk9kI7P8,2450
|
||||
jupyter_client/tests/test_adapter.py,sha256=ZyZoZ9MveOZsZv6CK_Rf6kbvoK4Qg5ntJ3JVDYIIvGA,13654
|
||||
jupyter_client/tests/test_client.py,sha256=2RySXvbv9OSxTAeDELsdIsRvYzvWijlvmcL1M4XpB_4,2857
|
||||
jupyter_client/tests/test_connect.py,sha256=HS3m5h9lyWx405RAGqjLHHQLFqEJN0MwBwvXip0exEM,8597
|
||||
jupyter_client/tests/test_jsonutil.py,sha256=0IhYwM3xNz9NBIpHB530I5z35mdzMrQX_Wt07jLES8k,2801
|
||||
jupyter_client/tests/test_kernelapp.py,sha256=iZlPVyriToX8sMIIiBqmAKMlq9vNtGgPi7CVHcPkq0s,1518
|
||||
jupyter_client/tests/test_kernelmanager.py,sha256=sdfDKBNngdalLzdi20PgAymjSZzRLcCSgPa3brBEHck,13534
|
||||
jupyter_client/tests/test_kernelspec.py,sha256=NgwFFdw9sz9kEBwRvhVehTdhvaKdIUlhR7cD7D3gDwg,7218
|
||||
jupyter_client/tests/test_localinterfaces.py,sha256=vFbt53GU1DNSXsNCmp60qBN1Pu4EtR7bljK6xvVX_xA,599
|
||||
jupyter_client/tests/test_manager.py,sha256=fMBC_kfVw-jBdt9m2ZY7j0KdF65wL0FCC41nPECNJKs,1300
|
||||
jupyter_client/tests/test_multikernelmanager.py,sha256=-c-ZK3JCJXpwrAdcKP9JlYPRX_IGM6W5DDHNLyGI6v4,9494
|
||||
jupyter_client/tests/test_public_api.py,sha256=M1V4zu1XawQ2hTtR6ckYBZ0o2HjlsEBS_kX5CxtDAnc,661
|
||||
jupyter_client/tests/test_session.py,sha256=xIhNJok1xmY0MrmDdvhuZHWp_iUQ5CFZm_Zj7_N1eBA,13341
|
||||
jupyter_client/tests/test_ssh.py,sha256=KVc9CzIH_tzSKjVOcPmVTB8CIfovdSAKqh10wQKy9OY,245
|
||||
jupyter_client/tests/utils.py,sha256=DLlCl9S75Fn7gazjCQf_LG1nf3N5f5eRei4h7abLU8U,3125
|
||||
jupyter_client/threaded.py,sha256=LD6zCBWah6Y4148052EDCBNqZT80T0P6t2cV7pdq46Y,7810
|
||||
jupyter_client/win_interrupt.py,sha256=hiQH-bEMVpVx6_I-DAQN54LTaq26QYLyWXoEE5VNLpU,1401
|
|
@ -0,0 +1,5 @@
|
|||
Wheel-Version: 1.0
|
||||
Generator: bdist_wheel (0.34.2)
|
||||
Root-Is-Purelib: true
|
||||
Tag: py3-none-any
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
[console_scripts]
|
||||
jupyter-kernel = jupyter_client.kernelapp:main
|
||||
jupyter-kernelspec = jupyter_client.kernelspecapp:KernelSpecApp.launch_instance
|
||||
jupyter-run = jupyter_client.runapp:RunApp.launch_instance
|
||||
|
|
@ -0,0 +1 @@
|
|||
jupyter_client
|
Loading…
Add table
Add a link
Reference in a new issue