Uploaded Test files
This commit is contained in:
parent
f584ad9d97
commit
2e81cb7d99
16627 changed files with 2065359 additions and 102444 deletions
|
@ -0,0 +1 @@
|
|||
pip
|
29
venv/Lib/site-packages/qtconsole-4.7.7.dist-info/LICENSE
Normal file
29
venv/Lib/site-packages/qtconsole-4.7.7.dist-info/LICENSE
Normal file
|
@ -0,0 +1,29 @@
|
|||
BSD 3-Clause License
|
||||
|
||||
Copyright (c) 2017, Project Jupyter Contributors
|
||||
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 copyright holder 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 HOLDER 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.
|
113
venv/Lib/site-packages/qtconsole-4.7.7.dist-info/METADATA
Normal file
113
venv/Lib/site-packages/qtconsole-4.7.7.dist-info/METADATA
Normal file
|
@ -0,0 +1,113 @@
|
|||
Metadata-Version: 2.1
|
||||
Name: qtconsole
|
||||
Version: 4.7.7
|
||||
Summary: Jupyter Qt console
|
||||
Home-page: http://jupyter.org
|
||||
Author: Jupyter Development Team
|
||||
Author-email: jupyter@googlegroups.com
|
||||
Maintainer: Spyder Development Team
|
||||
License: BSD
|
||||
Keywords: Interactive,Interpreter,Shell
|
||||
Platform: Linux
|
||||
Platform: Mac OS X
|
||||
Platform: Windows
|
||||
Classifier: Intended Audience :: Developers
|
||||
Classifier: Intended Audience :: System Administrators
|
||||
Classifier: Intended Audience :: Science/Research
|
||||
Classifier: License :: OSI Approved :: BSD License
|
||||
Classifier: Programming Language :: Python
|
||||
Classifier: Programming Language :: Python :: 2.7
|
||||
Classifier: Programming Language :: Python :: 3
|
||||
Classifier: Programming Language :: Python :: 3.5
|
||||
Classifier: Programming Language :: Python :: 3.6
|
||||
Classifier: Programming Language :: Python :: 3.7
|
||||
Description-Content-Type: text/markdown
|
||||
Requires-Dist: traitlets
|
||||
Requires-Dist: ipython-genutils
|
||||
Requires-Dist: jupyter-core
|
||||
Requires-Dist: jupyter-client (>=4.1)
|
||||
Requires-Dist: pygments
|
||||
Requires-Dist: ipykernel (>=4.1)
|
||||
Requires-Dist: qtpy
|
||||
Requires-Dist: pyzmq (>=17.1)
|
||||
Provides-Extra: doc
|
||||
Requires-Dist: Sphinx (>=1.3) ; extra == 'doc'
|
||||
Provides-Extra: test
|
||||
Requires-Dist: pytest ; extra == 'test'
|
||||
Requires-Dist: mock ; (python_version=="2.7") and extra == 'test'
|
||||
|
||||
# Jupyter QtConsole
|
||||
|
||||
[](https://travis-ci.org/jupyter/qtconsole)
|
||||
[](https://coveralls.io/github/jupyter/qtconsole?branch=master)
|
||||
[](https://qtconsole.readthedocs.io/en/stable/)
|
||||
[](https://groups.google.com/forum/#!forum/jupyter)
|
||||
|
||||
A rich Qt-based console for working with Jupyter kernels,
|
||||
supporting rich media output, session export, and more.
|
||||
|
||||
The Qtconsole is a very lightweight application that largely feels like a terminal, but
|
||||
provides a number of enhancements only possible in a GUI, such as inline
|
||||
figures, proper multiline editing with syntax highlighting, graphical calltips,
|
||||
and more.
|
||||
|
||||

|
||||
|
||||
## Install Qtconsole
|
||||
The Qtconsole requires Python bindings for Qt, such as [PyQt5](http://www.riverbankcomputing.com/software/pyqt/intro),
|
||||
[PyQt4](https://www.riverbankcomputing.com/software/pyqt/download),
|
||||
or [PySide](http://pyside.github.io/docs/pyside).
|
||||
|
||||
Although [pip](https://pypi.python.org/pypi/pip) and
|
||||
[conda](http://conda.pydata.org/docs) may be used to install the Qtconsole, conda
|
||||
is simpler to use since it automatically installs PyQt5. Alternatively,
|
||||
the Qtconsole installation with pip needs additional steps since pip doesn't install
|
||||
the Qt requirement.
|
||||
|
||||
### Install using conda
|
||||
To install:
|
||||
|
||||
conda install qtconsole
|
||||
|
||||
**Note:** If the Qtconsole is installed using conda, it will **automatically**
|
||||
install the Qt requirement as well.
|
||||
|
||||
### Install using pip
|
||||
To install:
|
||||
|
||||
pip install qtconsole
|
||||
|
||||
**Note:** Make sure that Qt is installed. Unfortunately, Qt is not
|
||||
installed when using pip. The next section gives instructions on doing it.
|
||||
|
||||
### Installing Qt (if needed)
|
||||
You can install PyQt5 with pip using the following command:
|
||||
|
||||
pip install pyqt5
|
||||
|
||||
or with a system package manager on Linux. For Windows, PyQt binary packages may be
|
||||
used.
|
||||
|
||||
**Note:** Additional information about using a system package manager may be
|
||||
found in the [qtconsole documentation](https://qtconsole.readthedocs.io).
|
||||
|
||||
More installation instructions for PyQt can be found in the [PyQt5 documentation](http://pyqt.sourceforge.net/Docs/PyQt5/installation.html) and [PyQt4 documentation](http://pyqt.sourceforge.net/Docs/PyQt4/installation.html)
|
||||
|
||||
Source packages for Windows/Linux/MacOS can be found here: [PyQt5](https://www.riverbankcomputing.com/software/pyqt/download5) and [PyQt4](https://riverbankcomputing.com/software/pyqt/download).
|
||||
|
||||
|
||||
## Usage
|
||||
To run the Qtconsole:
|
||||
|
||||
jupyter qtconsole
|
||||
|
||||
## Resources
|
||||
- [Project Jupyter website](https://jupyter.org)
|
||||
- Documentation for the Qtconsole
|
||||
* [latest version](https://qtconsole.readthedocs.io/en/latest/) [[PDF](https://media.readthedocs.org/pdf/qtconsole/latest/qtconsole.pdf)]
|
||||
* [stable version](https://qtconsole.readthedocs.io/en/stable/) [[PDF](https://media.readthedocs.org/pdf/qtconsole/stable/qtconsole.pdf)]
|
||||
- [Documentation for Project Jupyter](https://jupyter.readthedocs.io/en/latest/index.html) [[PDF](https://media.readthedocs.org/pdf/jupyter/latest/jupyter.pdf)]
|
||||
- [Issues](https://github.com/jupyter/qtconsole/issues)
|
||||
- [Technical support - Jupyter Google Group](https://groups.google.com/forum/#!forum/jupyter)
|
||||
|
||||
|
94
venv/Lib/site-packages/qtconsole-4.7.7.dist-info/RECORD
Normal file
94
venv/Lib/site-packages/qtconsole-4.7.7.dist-info/RECORD
Normal file
|
@ -0,0 +1,94 @@
|
|||
../../Scripts/jupyter-qtconsole.exe,sha256=9k-LJaXrn6Qf5VDMRlj9JrEUPPfwSpMxG7m_nRxd_Pg,90582
|
||||
qtconsole-4.7.7.data/scripts/jupyter-qtconsole,sha256=pz4fPYM2atc7W24pSMxmaywJJg0jEI8KKDI6xy1Byjg,88
|
||||
qtconsole-4.7.7.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
||||
qtconsole-4.7.7.dist-info/LICENSE,sha256=iHnKwx1qJa6IAYBWnqTYDKmyTqnnOnO1YEqXEfF0Sik,1528
|
||||
qtconsole-4.7.7.dist-info/METADATA,sha256=b0WI82b5vpHOIPLS840u-EO8EsMff1ScAIxLq1FGAaQ,4801
|
||||
qtconsole-4.7.7.dist-info/RECORD,,
|
||||
qtconsole-4.7.7.dist-info/WHEEL,sha256=ADKeyaGyKF5DwBNE0sRE5pvW-bSkFMJfBuhzZ3rceP4,110
|
||||
qtconsole-4.7.7.dist-info/entry_points.txt,sha256=TIItkk8iMgYbiE0U8IvTIPcpbq_848p_ZMOJ0_9y8Yw,63
|
||||
qtconsole-4.7.7.dist-info/top_level.txt,sha256=Vo9i7Mvpf6_8kJtNTCtBhnk--hyj_ZJ6mzrOsJaYzyg,10
|
||||
qtconsole/__init__.py,sha256=xmCKewcDvgni7pVRmItYwQYkzpdYG_wZAgdmx66IHaw,48
|
||||
qtconsole/__main__.py,sha256=oiE8djOUI2ZAa0HPdOOCztrk2Yl7Y8WS1JwzoRZfewI,82
|
||||
qtconsole/__pycache__/__init__.cpython-36.pyc,,
|
||||
qtconsole/__pycache__/__main__.cpython-36.pyc,,
|
||||
qtconsole/__pycache__/_version.cpython-36.pyc,,
|
||||
qtconsole/__pycache__/ansi_code_processor.cpython-36.pyc,,
|
||||
qtconsole/__pycache__/base_frontend_mixin.cpython-36.pyc,,
|
||||
qtconsole/__pycache__/bracket_matcher.cpython-36.pyc,,
|
||||
qtconsole/__pycache__/call_tip_widget.cpython-36.pyc,,
|
||||
qtconsole/__pycache__/client.cpython-36.pyc,,
|
||||
qtconsole/__pycache__/comms.cpython-36.pyc,,
|
||||
qtconsole/__pycache__/completion_html.cpython-36.pyc,,
|
||||
qtconsole/__pycache__/completion_plain.cpython-36.pyc,,
|
||||
qtconsole/__pycache__/completion_widget.cpython-36.pyc,,
|
||||
qtconsole/__pycache__/console_widget.cpython-36.pyc,,
|
||||
qtconsole/__pycache__/frontend_widget.cpython-36.pyc,,
|
||||
qtconsole/__pycache__/history_console_widget.cpython-36.pyc,,
|
||||
qtconsole/__pycache__/inprocess.cpython-36.pyc,,
|
||||
qtconsole/__pycache__/ipython_widget.cpython-36.pyc,,
|
||||
qtconsole/__pycache__/jupyter_widget.cpython-36.pyc,,
|
||||
qtconsole/__pycache__/kernel_mixins.cpython-36.pyc,,
|
||||
qtconsole/__pycache__/kill_ring.cpython-36.pyc,,
|
||||
qtconsole/__pycache__/mainwindow.cpython-36.pyc,,
|
||||
qtconsole/__pycache__/manager.cpython-36.pyc,,
|
||||
qtconsole/__pycache__/pygments_highlighter.cpython-36.pyc,,
|
||||
qtconsole/__pycache__/qstringhelpers.cpython-36.pyc,,
|
||||
qtconsole/__pycache__/qtconsoleapp.cpython-36.pyc,,
|
||||
qtconsole/__pycache__/rich_ipython_widget.cpython-36.pyc,,
|
||||
qtconsole/__pycache__/rich_jupyter_widget.cpython-36.pyc,,
|
||||
qtconsole/__pycache__/rich_text.cpython-36.pyc,,
|
||||
qtconsole/__pycache__/styles.cpython-36.pyc,,
|
||||
qtconsole/__pycache__/svg.cpython-36.pyc,,
|
||||
qtconsole/__pycache__/usage.cpython-36.pyc,,
|
||||
qtconsole/__pycache__/util.cpython-36.pyc,,
|
||||
qtconsole/_version.py,sha256=XSKKWHxWgRGcbZY2OyYy9V15XLEcPquaWzsdpacsWxQ,72
|
||||
qtconsole/ansi_code_processor.py,sha256=G0uAt_fy1OxwfkzVj4hrIAdk45cGSObBqCMXBYexxEE,14244
|
||||
qtconsole/base_frontend_mixin.py,sha256=B_8Y5RdFMBlwBg5P7Fb5E2h5AapM6ydCxbVmXhPOJtA,6057
|
||||
qtconsole/bracket_matcher.py,sha256=KLsAoOn0qwyO75T9yAIfU9MARLJax-c6tujVmEDFHy4,3753
|
||||
qtconsole/call_tip_widget.py,sha256=9ZILfkXSEPO8YNJEtytjFgltUHw3hEWUGGcgj9c4Qjo,10417
|
||||
qtconsole/client.py,sha256=eSDIrzxO1FxsRuX3v9GXvpS5ZHJBBSFad4c6F7B1tGM,2304
|
||||
qtconsole/comms.py,sha256=fZfRcIxSIDYowztEjG1NaeNxsNxHEDhF_h4SpCbIRR0,8976
|
||||
qtconsole/completion_html.py,sha256=1AMNrnw31Ki2iOCCNjruD3WDGxSmfkK_T43uvbRu__U,12957
|
||||
qtconsole/completion_plain.py,sha256=k3tn74o-5Jgl-DmdU_Ai5IPOjEFcixgQQOJPlDj5OoE,2289
|
||||
qtconsole/completion_widget.py,sha256=pkdLt50IeYrj2Fc7t9uJdvRp3DqFlHIx8cwrfAOXRcU,8391
|
||||
qtconsole/console_widget.py,sha256=xn28V3z3gQbcoYbWJPuaaYE0JDyPM_oj08CPkQwlPd0,100458
|
||||
qtconsole/frontend_widget.py,sha256=3Sf9IUtGGw1MLfqmyo9rPkvYtBZJBVCxStKiGhT-kDI,32283
|
||||
qtconsole/history_console_widget.py,sha256=XeGLnvFLaZ8x9FksTAsHPYJIXhffQse_3yWWxSKEFMA,10060
|
||||
qtconsole/inprocess.py,sha256=KmisSofH9_8WXXpferGCHOhcnkg3FKgR4BTSxAMR3NI,2825
|
||||
qtconsole/ipython_widget.py,sha256=8r67wSW8XcyfIYtwEpCcferlSXCaBumzxh9FR_LhtvA,169
|
||||
qtconsole/jupyter_widget.py,sha256=dO0o3QFdBHQBrjCDAf9oQ13g5n06RAHSXg0cwKKeegU,24914
|
||||
qtconsole/kernel_mixins.py,sha256=cDHRwmY8rYNOVen069uEHGvuacC_TYv7FZ-4nX3ZRN0,1888
|
||||
qtconsole/kill_ring.py,sha256=UaKd9OMxIVkFQfOVA0Ya-GUO682YzFjO0yzWdS0s3po,3809
|
||||
qtconsole/mainwindow.py,sha256=tNcCKOOHIGuuv114lAZr_ExOf-qlWw7RlgujssN6o30,36625
|
||||
qtconsole/manager.py,sha256=CWdGl0w4soVxKeB9FE7QQWzewR_ZvOyixLhA0DjmTsI,1571
|
||||
qtconsole/pygments_highlighter.py,sha256=829YMUcTyYwOSd_EHCDROacbSR69YE2gtcr-jbeV1dU,8975
|
||||
qtconsole/qstringhelpers.py,sha256=_BgXQIG41krSRZQl0dNCNyG3nZYqXzG3moHXaKR-dUA,723
|
||||
qtconsole/qtconsoleapp.py,sha256=eaS1tFEl2y5Vgh4t0eu-7MezGA5cHHPUI70LjA-uMA0,16819
|
||||
qtconsole/resources/icon/JupyterConsole.svg,sha256=XJZOyZK3Nu3Ou6rEnrHOGPR0oSaJ56VDfzD1Tj9yPOw,26397
|
||||
qtconsole/rich_ipython_widget.py,sha256=1NQ0TZgBX6g0ihnNLWhaXqUR0cNp96AQY6TQQVP9Niw,184
|
||||
qtconsole/rich_jupyter_widget.py,sha256=UmvyySO7fFMp6Zry_sxHx6xdDC565bf3nKmNirCf0g4,17520
|
||||
qtconsole/rich_text.py,sha256=T_SokFJ9AoutL2JGurTuPoBPWaFiRxgct1DcW6kV8-8,8704
|
||||
qtconsole/styles.py,sha256=YO7taAiFRgWFhVaftNUziCPmcjgtVKtLESPorAKtqPM,3801
|
||||
qtconsole/svg.py,sha256=dyiaRWWDAqZSKCwYFi3nQ9v1TkepA7Rita_0c-T-lx4,2491
|
||||
qtconsole/tests/__init__.py,sha256=7_vIA_bAaOUhcZvEAYB1-sihwNGbpUZY-Mg5G_ymzos,132
|
||||
qtconsole/tests/__pycache__/__init__.cpython-36.pyc,,
|
||||
qtconsole/tests/__pycache__/test_00_console_widget.cpython-36.pyc,,
|
||||
qtconsole/tests/__pycache__/test_ansi_code_processor.cpython-36.pyc,,
|
||||
qtconsole/tests/__pycache__/test_app.cpython-36.pyc,,
|
||||
qtconsole/tests/__pycache__/test_comms.cpython-36.pyc,,
|
||||
qtconsole/tests/__pycache__/test_completion_widget.cpython-36.pyc,,
|
||||
qtconsole/tests/__pycache__/test_frontend_widget.cpython-36.pyc,,
|
||||
qtconsole/tests/__pycache__/test_jupyter_widget.cpython-36.pyc,,
|
||||
qtconsole/tests/__pycache__/test_kill_ring.cpython-36.pyc,,
|
||||
qtconsole/tests/__pycache__/test_styles.cpython-36.pyc,,
|
||||
qtconsole/tests/test_00_console_widget.py,sha256=4PB0nVGU3rAP1zDBnwGcGSavC1cSK4UuUpRWDyZIV-o,22622
|
||||
qtconsole/tests/test_ansi_code_processor.py,sha256=GXtBOf6pIMcujWgvp_Mh0jw89HMsLi45Tiq1RsNvwzs,7337
|
||||
qtconsole/tests/test_app.py,sha256=UHI3rSH6K9cgVMIEYWvGpdv8YR_xM3InZbJdm5GuljU,1003
|
||||
qtconsole/tests/test_comms.py,sha256=ztRkqjxT03j9MzimWDu4dD8GChem9AAFNcu5YXjK6ns,5926
|
||||
qtconsole/tests/test_completion_widget.py,sha256=YtV_zJ9DMw6zTT_SQhGCQg20m9KZehlmRT4Xav-D4vY,3367
|
||||
qtconsole/tests/test_frontend_widget.py,sha256=If0YZva9_1Z2TzFs6pj3OEL7ObO9YNeBMtXB9LnhYOw,3219
|
||||
qtconsole/tests/test_jupyter_widget.py,sha256=k4laWmChE7phJp9iiOdSCjd9Xe3FSAWtTWK44tnKWvg,3844
|
||||
qtconsole/tests/test_kill_ring.py,sha256=pe3BGzF2_eh2qdEM9Wd0B3hjGJNAeYm21s3rrA97w6I,2278
|
||||
qtconsole/tests/test_styles.py,sha256=Cvnil-t9wOCZlEEpUlnjkrf7uhUj2hAHqCdOrQBt-Ig,519
|
||||
qtconsole/usage.py,sha256=SZm9_6SSB6D8Ow0aMr4XyrOGvJPLfn9ZKlFU7oXcxOk,8349
|
||||
qtconsole/util.py,sha256=Ji9Ur0U1QZHPhagCaqd-6zSjo4oDLoiTOkAHi5ySO2A,4022
|
6
venv/Lib/site-packages/qtconsole-4.7.7.dist-info/WHEEL
Normal file
6
venv/Lib/site-packages/qtconsole-4.7.7.dist-info/WHEEL
Normal file
|
@ -0,0 +1,6 @@
|
|||
Wheel-Version: 1.0
|
||||
Generator: bdist_wheel (0.35.1)
|
||||
Root-Is-Purelib: true
|
||||
Tag: py2-none-any
|
||||
Tag: py3-none-any
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
[gui_scripts]
|
||||
jupyter-qtconsole = qtconsole.qtconsoleapp:main
|
||||
|
|
@ -0,0 +1 @@
|
|||
qtconsole
|
Loading…
Add table
Add a link
Reference in a new issue