【实例简介】

Spyder是Python(x,y)的作者为它开发的一个简单的集成开发环境。和其他的Python开发环境相比,它最大的优点就是模仿MATLAB的“工作空间”的功能,可以很方便地观察和修改数组的值。Spyder的界面由许多窗格构成,用户可以根据自己的喜好调整它们的位置和大小。当多个窗格出现在一个区域时,将使用标签页的形式显示。例如在图1中,可以看到“Editor”、“Object inspector”、“Variable explorer”、“File explorer”、“Console”、“History log”以及两个显示图像的窗格。在View菜单中可以设置是否显示这些窗格。

【实例截图】

【核心代码】

6733fac7-3b76-4cb9-8cb2-80ed74b0533d

└── spyder-3.2.8

├── bootstrap.py

├── CHANGELOG.md

├── doc

│   ├── conf.py

│   ├── console.rst

│   ├── debugging.rst

│   ├── editor.rst

│   ├── fileexplorer.rst

│   ├── findinfiles.rst

│   ├── help.rst

│   ├── historylog.rst

│   ├── images

│   │   ├── arrayeditor.png

│   │   ├── console.png

│   │   ├── dicteditor.png

│   │   ├── editor1.png

│   │   ├── editor2.png

│   │   ├── editor3.png

│   │   ├── explorer_menu1.png

│   │   ├── explorer_menu2.png

│   │   ├── explorer.png

│   │   ├── findinfiles.png

│   │   ├── git_install_dialog.png

│   │   ├── help_plain.png

│   │   ├── help_rich.png

│   │   ├── help_source.png

│   │   ├── historylog.png

│   │   ├── internalconsole.png

│   │   ├── ipythonconsolemenu.png

│   │   ├── ipythonconsole.png

│   │   ├── ipythonkernelconnect.png

│   │   ├── lightmode.png

│   │   ├── listeditor.png

│   │   ├── new_project.png

│   │   ├── onlinehelp.png

│   │   ├── projectexplorer2.png

│   │   ├── projectexplorer.png

│   │   ├── pylint.png

│   │   ├── texteditor.png

│   │   ├── variableexplorer1.png

│   │   ├── variableexplorer-imshow.png

│   │   └── variableexplorer-plot.png

│   ├── index.rst

│   ├── installation.rst

│   ├── internalconsole.rst

│   ├── ipythonconsole.rst

│   ├── onlinehelp.rst

│   ├── options.rst

│   ├── overview.rst

│   ├── projects.rst

│   ├── pylint.rst

│   ├── spyder_bbg.png

│   ├── _static

│   │   └── favicon.ico

│   └── variableexplorer.rst

├── img_src

│   ├── spyder3.png

│   ├── spyder.ico

│   ├── spyder.png

│   └── spyder_reset.ico

├── LICENSE

├── MANIFEST.in

├── PKG-INFO

├── README.md

├── scripts

│   ├── spyder

│   ├── spyder3

│   ├── spyder3.appdata.xml

│   ├── spyder3.desktop

│   ├── spyder.bat

│   ├── spyder.desktop

│   └── spyder_win_post_install.py

├── setup.py

├── spyder

│   ├── app

│   │   ├── cli_options.py

│   │   ├── __init__.py

│   │   ├── mac_stylesheet.qss

│   │   ├── mainwindow.py

│   │   ├── restart.py

│   │   ├── start.py

│   │   ├── tests

│   │   │   ├── __init__.py

│   │   │   ├── notebook.ipynb

│   │   │   ├── pyx_lib_import.py

│   │   │   ├── pyx_script.pyx

│   │   │   ├── script.py

│   │   │   ├── script_pylint.py

│   │   │   ├── test_mainwindow.py

│   │   │   └── test_tour.py

│   │   └── tour.py

│   ├── config

│   │   ├── base.py

│   │   ├── fonts.py

│   │   ├── gui.py

│   │   ├── __init__.py

│   │   ├── main.py

│   │   ├── tests

│   │   │   ├── __init__.py

│   │   │   └── test_user.py

│   │   ├── user.py

│   │   └── utils.py

│   ├── defaults

│   │   ├── defaults-2.4.0.ini

│   │   ├── defaults-3.0.0.ini

│   │   └── Readme.txt

│   ├── dependencies.py

│   ├── fonts

│   │   ├── spyder-charmap.json

│   │   └── spyder.ttf

│   ├── images

│   │   ├── actions

│   │   │   ├── 1downarrow.png

│   │   │   ├── 1uparrow.png

│   │   │   ├── 2downarrow.png

│   │   │   ├── 2uparrow.png

│   │   │   ├── arrow-continue.png

│   │   │   ├── arrow-step-in.png

│   │   │   ├── arrow-step-out.png

│   │   │   ├── arrow-step-over.png

│   │   │   ├── auto_reload.png

│   │   │   ├── browse_tab.png

│   │   │   ├── check.png

│   │   │   ├── cmdprompt.png

│   │   │   ├── collapse.png

│   │   │   ├── collapse_selection.png

│   │   │   ├── configure.png

│   │   │   ├── copywop.png

│   │   │   ├── delete.png

│   │   │   ├── edit24.png

│   │   │   ├── edit_add.png

│   │   │   ├── editcopy.png

│   │   │   ├── editcut.png

│   │   │   ├── editdelete.png

│   │   │   ├── editpaste.png

│   │   │   ├── edit.png

│   │   │   ├── edit_remove.png

│   │   │   ├── eraser.png

│   │   │   ├── exit.png

│   │   │   ├── expand.png

│   │   │   ├── expand_selection.png

│   │   │   ├── filter.png

│   │   │   ├── findf.png

│   │   │   ├── findnext.png

│   │   │   ├── find.png

│   │   │   ├── findprevious.png

│   │   │   ├── folder_new.png

│   │   │   ├── hide.png

│   │   │   ├── hist.png

│   │   │   ├── home.png

│   │   │   ├── imshow.png

│   │   │   ├── insert.png

│   │   │   ├── lock_open.png

│   │   │   ├── lock.png

│   │   │   ├── magnifier.png

│   │   │   ├── maximize.png

│   │   │   ├── next.png

│   │   │   ├── options_less.png

│   │   │   ├── options_more.png

│   │   │   ├── plot.png

│   │   │   ├── previous.png

│   │   │   ├── redo.png

│   │   │   ├── reload.png

│   │   │   ├── rename.png

│   │   │   ├── replace.png

│   │   │   ├── restore.png

│   │   │   ├── show.png

│   │   │   ├── special_paste.png

│   │   │   ├── stop_debug.png

│   │   │   ├── stop.png

│   │   │   ├── synchronize.png

│   │   │   ├── tooloptions.png

│   │   │   ├── undo.png

│   │   │   ├── unmaximize.png

│   │   │   ├── up.png

│   │   │   ├── window_fullscreen.png

│   │   │   ├── window_nofullscreen.png

│   │   │   ├── zoom_in.png

│   │   │   └── zoom_out.png

│   │   ├── advanced.png

│   │   ├── arredit.png

│   │   ├── arrow.png

│   │   ├── bold.png

│   │   ├── browser.png

│   │   ├── chevron-left.png

│   │   ├── chevron-right.png

│   │   ├── console

│   │   │   ├── cmdprompt_t.png

│   │   │   ├── console.png

│   │   │   ├── editclear.png

│   │   │   ├── environ.png

│   │   │   ├── history24.png

│   │   │   ├── history.png

│   │   │   ├── ipython_console.png

│   │   │   ├── ipython_console_t.png

│   │   │   ├── kill.png

│   │   │   ├── loading_sprites.png

│   │   │   ├── prompt.png

│   │   │   ├── python.png

│   │   │   ├── python_t.png

│   │   │   ├── restart.png

│   │   │   ├── run_small.png

│   │   │   ├── syspath.png

│   │   │   └── terminated.png

│   │   ├── dictedit.png

│   │   ├── editor

│   │   │   ├── attribute.png

│   │   │   ├── blockcomment.png

│   │   │   ├── breakpoint_big.png

│   │   │   ├── breakpoint_cond_big.png

│   │   │   ├── breakpoint_cond_small.png

│   │   │   ├── breakpoint_small.png

│   │   │   ├── bug.png

│   │   │   ├── cell.png

│   │   │   ├── class.png

│   │   │   ├── close_panel.png

│   │   │   ├── comment.png

│   │   │   ├── convention.png

│   │   │   ├── debug.png

│   │   │   ├── error.png

│   │   │   ├── filelist.png

│   │   │   ├── file.png

│   │   │   ├── fromcursor.png

│   │   │   ├── function.png

│   │   │   ├── gotoline.png

│   │   │   ├── highlight.png

│   │   │   ├── horsplit.png

│   │   │   ├── indent.png

│   │   │   ├── last_edit_location.png

│   │   │   ├── method.png

│   │   │   ├── module.png

│   │   │   ├── newwindow.png

│   │   │   ├── next_cursor.png

│   │   │   ├── next_wng.png

│   │   │   ├── no_match.png

│   │   │   ├── outline_explorer.png

│   │   │   ├── outline_explorer_vis.png

│   │   │   ├── prev_cursor.png

│   │   │   ├── prev_wng.png

│   │   │   ├── private1.png

│   │   │   ├── private2.png

│   │   │   ├── refactor.png

│   │   │   ├── run_again.png

│   │   │   ├── run_cell_advance.png

│   │   │   ├── run_cell.png

│   │   │   ├── run.png

│   │   │   ├── run_selection.png

│   │   │   ├── run_settings.png

│   │   │   ├── selectall.png

│   │   │   ├── select.png

│   │   │   ├── todo_list.png

│   │   │   ├── todo.png

│   │   │   ├── uncomment.png

│   │   │   ├── unindent.png

│   │   │   ├── versplit.png

│   │   │   ├── warning.png

│   │   │   └── wng_list.png

│   │   ├── eyedropper.png

│   │   ├── file

│   │   │   ├── filecloseall.png

│   │   │   ├── fileclose.png

│   │   │   ├── fileimport.png

│   │   │   ├── filenew.png

│   │   │   ├── fileopen.png

│   │   │   ├── filesaveas.png

│   │   │   ├── filesave.png

│   │   │   ├── print.png

│   │   │   └── save_all.png

│   │   ├── filetypes

│   │   │   ├── bat.png

│   │   │   ├── bmp.png

│   │   │   ├── cc.png

│   │   │   ├── cfg.png

│   │   │   ├── chm.png

│   │   │   ├── cl.png

│   │   │   ├── cmd.png

│   │   │   ├── c.png

│   │   │   ├── cpp.png

│   │   │   ├── css.png

│   │   │   ├── cxx.png

│   │   │   ├── diff.png

│   │   │   ├── doc.png

│   │   │   ├── enaml.png

│   │   │   ├── exe.png

│   │   │   ├── f77.png

│   │   │   ├── f90.png

│   │   │   ├── f.png

│   │   │   ├── gif.png

│   │   │   ├── hh.png

│   │   │   ├── h.png

│   │   │   ├── hpp.png

│   │   │   ├── html.png

│   │   │   ├── htm.png

│   │   │   ├── hxx.png

│   │   │   ├── inf.png

│   │   │   ├── ini.png

│   │   │   ├── jl.png

│   │   │   ├── jpeg.png

│   │   │   ├── jpg.png

│   │   │   ├── js.png

│   │   │   ├── log.png

│   │   │   ├── nsh.png

│   │   │   ├── nsi.png

│   │   │   ├── nt.png

│   │   │   ├── patch.png

│   │   │   ├── pdf.png

│   │   │   ├── png.png

│   │   │   ├── po.png

│   │   │   ├── pot.png

│   │   │   ├── pps.png

│   │   │   ├── properties.png

│   │   │   ├── ps.png

│   │   │   ├── pxd.png

│   │   │   ├── pxi.png

│   │   │   ├── pyc.png

│   │   │   ├── py.png

│   │   │   ├── pyw.png

│   │   │   ├── pyx.png

│   │   │   ├── rar.png

│   │   │   ├── readme.png

│   │   │   ├── reg.png

│   │   │   ├── rej.png

│   │   │   ├── scss.png

│   │   │   ├── session.png

│   │   │   ├── tar.png

│   │   │   ├── tex.png

│   │   │   ├── tgz.png

│   │   │   ├── tiff.png

│   │   │   ├── tif.png

│   │   │   ├── ts.png

│   │   │   ├── txt.png

│   │   │   ├── ui.png

│   │   │   ├── xls.png

│   │   │   ├── xml.png

│   │   │   └── zip.png

│   │   ├── font.png

│   │   ├── genprefs.png

│   │   ├── help.png

│   │   ├── italic.png

│   │   ├── keyboard.png

│   │   ├── matplotlib.png

│   │   ├── none.png

│   │   ├── not_found.png

│   │   ├── options.svg

│   │   ├── projects

│   │   │   ├── add_to_path.png

│   │   │   ├── folder.png

│   │   │   ├── package.png

│   │   │   ├── pp_folder.png

│   │   │   ├── pp_package.png

│   │   │   ├── pp_project.png

│   │   │   ├── project_closed.png

│   │   │   ├── project.png

│   │   │   ├── pydev.png

│   │   │   ├── pythonpath.png

│   │   │   ├── remove_from_path.png

│   │   │   └── show_all.png

│   │   ├── pythonpath.png

│   │   ├── pythonxy.png

│   │   ├── qtassistant.png

│   │   ├── qtdesigner.png

│   │   ├── qtlinguist.png

│   │   ├── qt.png

│   │   ├── scipy.png

│   │   ├── set_workdir.png

│   │   ├── splash.svg

│   │   ├── spyder.png

│   │   ├── spyder.svg

│   │   ├── tour-spyder-logo.png

│   │   ├── upper_lower.png

│   │   ├── vcs_browse.png

│   │   ├── vcs_commit.png

│   │   ├── vitables.png

│   │   ├── whole_words.png

│   │   ├── win_env.png

│   │   └── winpython.svg

│   ├── __init__.py

│   ├── interpreter.py

│   ├── locale

│   │   ├── es

│   │   │   └── LC_MESSAGES

│   │   │   ├── spyder.mo

│   │   │   └── spyder.po

│   │   ├── fr

│   │   │   └── LC_MESSAGES

│   │   │   ├── spyder.mo

│   │   │   └── spyder.po

│   │   ├── ja

│   │   │   └── LC_MESSAGES

│   │   │   ├── spyder.mo

│   │   │   └── spyder.po

│   │   ├── pt_BR

│   │   │   └── LC_MESSAGES

│   │   │   ├── spyder.mo

│   │   │   └── spyder.po

│   │   ├── ru

│   │   │   └── LC_MESSAGES

│   │   │   ├── spyder.mo

│   │   │   └── spyder.po

│   │   └── spyder.pot

│   ├── otherplugins.py

│   ├── pil_patch.py

│   ├── plugins

│   │   ├── configdialog.py

│   │   ├── console.py

│   │   ├── editor.py

│   │   ├── explorer.py

│   │   ├── findinfiles.py

│   │   ├── help.py

│   │   ├── history.py

│   │   ├── __init__.py

│   │   ├── ipythonconsole.py

│   │   ├── layoutdialog.py

│   │   ├── maininterpreter.py

│   │   ├── onlinehelp.py

│   │   ├── outlineexplorer.py

│   │   ├── projects.py

│   │   ├── runconfig.py

│   │   ├── shortcuts.py

│   │   ├── tests

│   │   │   ├── __init__.py

│   │   │   ├── test_editor_introspection.py

│   │   │   ├── test_editor.py

│   │   │   ├── test_findinfiles.py

│   │   │   ├── test_help.py

│   │   │   ├── test_init.py

│   │   │   ├── test_ipythonconsole.py

│   │   │   ├── test_layoutdialog.py

│   │   │   ├── test_projects.py

│   │   │   ├── test_shorcuts.py

│   │   │   └── test_variableexplorer.py

│   │   ├── variableexplorer.py

│   │   └── workingdirectory.py

│   ├── py3compat.py

│   ├── pyplot.py

│   ├── requirements.py

│   ├── tests

│   │   ├── __init__.py

│   │   └── test_dont_use.py

│   ├── utils

│   │   ├── bsdsocket.py

│   │   ├── codeanalysis.py

│   │   ├── debug.py

│   │   ├── dochelpers.py

│   │   ├── encoding.py

│   │   ├── environ.py

│   │   ├── external

│   │   │   ├── binaryornot

│   │   │   │   ├── check.py

│   │   │   │   ├── helpers.py

│   │   │   │   ├── __init__.py

│   │   │   │   └── LICENSE.txt

│   │   │   ├── __init__.py

│   │   │   └── lockfile.py

│   │   ├── fixtures.py

│   │   ├── help

│   │   │   ├── conf.py

│   │   │   ├── __init__.py

│   │   │   ├── js

│   │   │   │   ├── collapse_sections.js

│   │   │   │   ├── copy_button.js

│   │   │   │   ├── fix_image_paths.js

│   │   │   │   ├── jquery.js

│   │   │   │   ├── math_config.js

│   │   │   │   ├── mathjax

│   │   │   │   │   ├── config

│   │   │   │   │   │   ├── default.js

│   │   │   │   │   │   ├── local

│   │   │   │   │   │   │   └── local.js

│   │   │   │   │   │   ├── TeX-AMS-MML_HTMLorMML-full.js

│   │   │   │   │   │   ├── TeX-AMS-MML_HTMLorMML.js

│   │   │   │   │   │   ├── TeX-AMS-MML_SVG-full.js

│   │   │   │   │   │   ├── TeX-AMS-MML_SVG.js

│   │   │   │   │   │   ├── TeX-MML-AM_HTMLorMML-full.js

│   │   │   │   │   │   └── TeX-MML-AM_HTMLorMML.js

│   │   │   │   │   ├── extensions

│   │   │   │   │   │   ├── asciimath2jax.js

│   │   │   │   │   │   ├── FontWarnings.js

│   │   │   │   │   │   ├── HTML-CSS

│   │   │   │   │   │   │   └── handle-floats.js

│   │   │   │   │   │   ├── jsMath2jax.js

│   │   │   │   │   │   ├── MathEvents.js

│   │   │   │   │   │   ├── MathMenu.js

│   │   │   │   │   │   ├── MathZoom.js

│   │   │   │   │   │   ├── mml2jax.js

│   │   │   │   │   │   ├── TeX

│   │   │   │   │   │   │   ├── action.js

│   │   │   │   │   │   │   ├── AMSmath.js

│   │   │   │   │   │   │   ├── AMSsymbols.js

│   │   │   │   │   │   │   ├── autobold.js

│   │   │   │   │   │   │   ├── autoload-all.js

│   │   │   │   │   │   │   ├── bbox.js

│   │   │   │   │   │   │   ├── begingroup.js

│   │   │   │   │   │   │   ├── boldsymbol.js

│   │   │   │   │   │   │   ├── cancel.js

│   │   │   │   │   │   │   ├── color.js

│   │   │   │   │   │   │   ├── enclose.js

│   │   │   │   │   │   │   ├── extpfeil.js

│   │   │   │   │   │   │   ├── HTML.js

│   │   │   │   │   │   │   ├── mathchoice.js

│   │   │   │   │   │   │   ├── mhchem.js

│   │   │   │   │   │   │   ├── newcommand.js

│   │   │   │   │   │   │   ├── noErrors.js

│   │   │   │   │   │   │   ├── noUndefined.js

│   │   │   │   │   │   │   ├── unicode.js

│   │   │   │   │   │   │   └── verb.js

│   │   │   │   │   │   ├── tex2jax.js

│   │   │   │   │   │   ├── toMathML.js

│   │   │   │   │   │   └── v1.0-warning.js

│   │   │   │   │   ├── images

│   │   │   │   │   │   ├── CloseX-31.png

│   │   │   │   │   │   └── MenuArrow-15.png

│   │   │   │   │   ├── jax

│   │   │   │   │   │   ├── element

│   │   │   │   │   │   │   └── mml

│   │   │   │   │   │   │   ├── jax.js

│   │   │   │   │   │   │   └── optable

│   │   │   │   │   │   │   ├── Arrows.js

│   │   │   │   │   │   │   ├── BasicLatin.js

│   │   │   │   │   │   │   ├── CombDiacritMarks.js

│   │   │   │   │   │   │   ├── CombDiactForSymbols.js

│   │   │   │   │   │   │   ├── Dingbats.js

│   │   │   │   │   │   │   ├── GeneralPunctuation.js

│   │   │   │   │   │   │   ├── GeometricShapes.js

│   │   │   │   │   │   │   ├── GreekAndCoptic.js

│   │   │   │   │   │   │   ├── Latin1Supplement.js

│   │   │   │   │   │   │   ├── LetterlikeSymbols.js

│   │   │   │   │   │   │   ├── MathOperators.js

│   │   │   │   │   │   │   ├── MiscMathSymbolsA.js

│   │   │   │   │   │   │   ├── MiscMathSymbolsB.js

│   │   │   │   │   │   │   ├── MiscSymbolsAndArrows.js

│   │   │   │   │   │   │   ├── MiscTechnical.js

│   │   │   │   │   │   │   ├── SpacingModLetters.js

│   │   │   │   │   │   │   ├── SupplementalArrowsA.js

│   │   │   │   │   │   │   ├── SupplementalArrowsB.js

│   │   │   │   │   │   │   └── SuppMathOperators.js

│   │   │   │   │   │   ├── input

│   │   │   │   │   │   │   ├── AsciiMath

│   │   │   │   │   │   │   │   ├── config.js

│   │   │   │   │   │   │   │   └── jax.js

│   │   │   │   │   │   │   ├── MathML

│   │   │   │   │   │   │   │   ├── config.js

│   │   │   │   │   │   │   │   ├── entities

│   │   │   │   │   │   │   │   │   ├── a.js

│   │   │   │   │   │   │   │   │   ├── b.js

│   │   │   │   │   │   │   │   │   ├── c.js

│   │   │   │   │   │   │   │   │   ├── d.js

│   │   │   │   │   │   │   │   │   ├── e.js

│   │   │   │   │   │   │   │   │   ├── f.js

│   │   │   │   │   │   │   │   │   ├── fr.js

│   │   │   │   │   │   │   │   │   ├── g.js

│   │   │   │   │   │   │   │   │   ├── h.js

│   │   │   │   │   │   │   │   │   ├── i.js

│   │   │   │   │   │   │   │   │   ├── j.js

│   │   │   │   │   │   │   │   │   ├── k.js

│   │   │   │   │   │   │   │   │   ├── l.js

│   │   │   │   │   │   │   │   │   ├── m.js

│   │   │   │   │   │   │   │   │   ├── n.js

│   │   │   │   │   │   │   │   │   ├── o.js

│   │   │   │   │   │   │   │   │   ├── opf.js

│   │   │   │   │   │   │   │   │   ├── p.js

│   │   │   │   │   │   │   │   │   ├── q.js

│   │   │   │   │   │   │   │   │   ├── r.js

│   │   │   │   │   │   │   │   │   ├── scr.js

│   │   │   │   │   │   │   │   │   ├── s.js

│   │   │   │   │   │   │   │   │   ├── t.js

│   │   │   │   │   │   │   │   │   ├── u.js

│   │   │   │   │   │   │   │   │   ├── v.js

│   │   │   │   │   │   │   │   │   ├── w.js

│   │   │   │   │   │   │   │   │   ├── x.js

│   │   │   │   │   │   │   │   │   ├── y.js

│   │   │   │   │   │   │   │   │   └── z.js

│   │   │   │   │   │   │   │   └── jax.js

│   │   │   │   │   │   │   └── TeX

│   │   │   │   │   │   │   ├── config.js

│   │   │   │   │   │   │   └── jax.js

│   │   │   │   │   │   └── output

│   │   │   │   │   │   └── SVG

│   │   │   │   │   │   ├── autoload

│   │   │   │   │   │   │   ├── annotation-xml.js

│   │   │   │   │   │   │   ├── maction.js

│   │   │   │   │   │   │   ├── menclose.js

│   │   │   │   │   │   │   ├── mglyph.js

│   │   │   │   │   │   │   ├── mmultiscripts.js

│   │   │   │   │   │   │   ├── ms.js

│   │   │   │   │   │   │   ├── mtable.js

│   │   │   │   │   │   │   └── multiline.js

│   │   │   │   │   │   ├── config.js

│   │   │   │   │   │   ├── fonts

│   │   │   │   │   │   │   └── TeX

│   │   │   │   │   │   │   ├── AMS

│   │   │   │   │   │   │   │   └── Regular

│   │   │   │   │   │   │   │   ├── Arrows.js

│   │   │   │   │   │   │   │   ├── BoxDrawing.js

│   │   │   │   │   │   │   │   ├── CombDiacritMarks.js

│   │   │   │   │   │   │   │   ├── Dingbats.js

│   │   │   │   │   │   │   │   ├── EnclosedAlphanum.js

│   │   │   │   │   │   │   │   ├── GeneralPunctuation.js

│   │   │   │   │   │   │   │   ├── GeometricShapes.js

│   │   │   │   │   │   │   │   ├── GreekAndCoptic.js

│   │   │   │   │   │   │   │   ├── Latin1Supplement.js

│   │   │   │   │   │   │   │   ├── LatinExtendedA.js

│   │   │   │   │   │   │   │   ├── LetterlikeSymbols.js

│   │   │   │   │   │   │   │   ├── Main.js

│   │   │   │   │   │   │   │   ├── MathOperators.js

│   │   │   │   │   │   │   │   ├── MiscMathSymbolsB.js

│   │   │   │   │   │   │   │   ├── MiscSymbols.js

│   │   │   │   │   │   │   │   ├── MiscTechnical.js

│   │   │   │   │   │   │   │   ├── PUA.js

│   │   │   │   │   │   │   │   ├── SpacingModLetters.js

│   │   │   │   │   │   │   │   └── SuppMathOperators.js

│   │   │   │   │   │   │   ├── Caligraphic

│   │   │   │   │   │   │   │   ├── Bold

│   │   │   │   │   │   │   │   │   └── Main.js

│   │   │   │   │   │   │   │   └── Regular

│   │   │   │   │   │   │   │   └── Main.js

│   │   │   │   │   │   │   ├── fontdata-extra.js

│   │   │   │   │   │   │   ├── fontdata.js

│   │   │   │   │   │   │   ├── Fraktur

│   │   │   │   │   │   │   │   ├── Bold

│   │   │   │   │   │   │   │   │   ├── BasicLatin.js

│   │   │   │   │   │   │   │   │   ├── Main.js

│   │   │   │   │   │   │   │   │   ├── Other.js

│   │   │   │   │   │   │   │   │   └── PUA.js

│   │   │   │   │   │   │   │   └── Regular

│   │   │   │   │   │   │   │   ├── BasicLatin.js

│   │   │   │   │   │   │   │   ├── Main.js

│   │   │   │   │   │   │   │   ├── Other.js

│   │   │   │   │   │   │   │   └── PUA.js

│   │   │   │   │   │   │   ├── Main

│   │   │   │   │   │   │   │   ├── Bold

│   │   │   │   │   │   │   │   │   ├── Arrows.js

│   │   │   │   │   │   │   │   │   ├── BasicLatin.js

│   │   │   │   │   │   │   │   │   ├── CombDiacritMarks.js

│   │   │   │   │   │   │   │   │   ├── CombDiactForSymbols.js

│   │   │   │   │   │   │   │   │   ├── GeneralPunctuation.js

│   │   │   │   │   │   │   │   │   ├── GeometricShapes.js

│   │   │   │   │   │   │   │   │   ├── GreekAndCoptic.js

│   │   │   │   │   │   │   │   │   ├── Latin1Supplement.js

│   │   │   │   │   │   │   │   │   ├── LatinExtendedA.js

│   │   │   │   │   │   │   │   │   ├── LatinExtendedB.js

│   │   │   │   │   │   │   │   │   ├── LetterlikeSymbols.js

│   │   │   │   │   │   │   │   │   ├── Main.js

│   │   │   │   │   │   │   │   │   ├── MathOperators.js

│   │   │   │   │   │   │   │   │   ├── MiscMathSymbolsA.js

│   │   │   │   │   │   │   │   │   ├── MiscSymbols.js

│   │   │   │   │   │   │   │   │   ├── MiscTechnical.js

│   │   │   │   │   │   │   │   │   ├── SpacingModLetters.js

│   │   │   │   │   │   │   │   │   ├── SupplementalArrowsA.js

│   │   │   │   │   │   │   │   │   └── SuppMathOperators.js

│   │   │   │   │   │   │   │   ├── Italic

│   │   │   │   │   │   │   │   │   ├── BasicLatin.js

│   │   │   │   │   │   │   │   │   ├── CombDiacritMarks.js

│   │   │   │   │   │   │   │   │   ├── GeneralPunctuation.js

│   │   │   │   │   │   │   │   │   ├── GreekAndCoptic.js

│   │   │   │   │   │   │   │   │   ├── LatinExtendedA.js

│   │   │   │   │   │   │   │   │   ├── LatinExtendedB.js

│   │   │   │   │   │   │   │   │   ├── LetterlikeSymbols.js

│   │   │   │   │   │   │   │   │   ├── Main.js

│   │   │   │   │   │   │   │   │   └── MathOperators.js

│   │   │   │   │   │   │   │   └── Regular

│   │   │   │   │   │   │   │   ├── BasicLatin.js

│   │   │   │   │   │   │   │   ├── CombDiacritMarks.js

│   │   │   │   │   │   │   │   ├── GeometricShapes.js

│   │   │   │   │   │   │   │   ├── GreekAndCoptic.js

│   │   │   │   │   │   │   │   ├── LatinExtendedA.js

│   │   │   │   │   │   │   │   ├── LatinExtendedB.js

│   │   │   │   │   │   │   │   ├── LetterlikeSymbols.js

│   │   │   │   │   │   │   │   ├── Main.js

│   │   │   │   │   │   │   │   ├── MathOperators.js

│   │   │   │   │   │   │   │   ├── MiscSymbols.js

│   │   │   │   │   │   │   │   ├── SpacingModLetters.js

│   │   │   │   │   │   │   │   └── SuppMathOperators.js

│   │   │   │   │   │   │   ├── Math

│   │   │   │   │   │   │   │   ├── BoldItalic

│   │   │   │   │   │   │   │   │   └── Main.js

│   │   │   │   │   │   │   │   └── Italic

│   │   │   │   │   │   │   │   └── Main.js

│   │   │   │   │   │   │   ├── SansSerif

│   │   │   │   │   │   │   │   ├── Bold

│   │   │   │   │   │   │   │   │   ├── BasicLatin.js

│   │   │   │   │   │   │   │   │   ├── CombDiacritMarks.js

│   │   │   │   │   │   │   │   │   ├── Main.js

│   │   │   │   │   │   │   │   │   └── Other.js

│   │   │   │   │   │   │   │   ├── Italic

│   │   │   │   │   │   │   │   │   ├── BasicLatin.js

│   │   │   │   │   │   │   │   │   ├── CombDiacritMarks.js

│   │   │   │   │   │   │   │   │   ├── Main.js

│   │   │   │   │   │   │   │   │   └── Other.js

│   │   │   │   │   │   │   │   └── Regular

│   │   │   │   │   │   │   │   ├── BasicLatin.js

│   │   │   │   │   │   │   │   ├── CombDiacritMarks.js

│   │   │   │   │   │   │   │   ├── Main.js

│   │   │   │   │   │   │   │   └── Other.js

│   │   │   │   │   │   │   ├── Script

│   │   │   │   │   │   │   │   └── Regular

│   │   │   │   │   │   │   │   ├── BasicLatin.js

│   │   │   │   │   │   │   │   └── Main.js

│   │   │   │   │   │   │   ├── Size1

│   │   │   │   │   │   │   │   └── Regular

│   │   │   │   │   │   │   │   └── Main.js

│   │   │   │   │   │   │   ├── Size2

│   │   │   │   │   │   │   │   └── Regular

│   │   │   │   │   │   │   │   └── Main.js

│   │   │   │   │   │   │   ├── Size3

│   │   │   │   │   │   │   │   └── Regular

│   │   │   │   │   │   │   │   └── Main.js

│   │   │   │   │   │   │   ├── Size4

│   │   │   │   │   │   │   │   └── Regular

│   │   │   │   │   │   │   │   └── Main.js

│   │   │   │   │   │   │   └── Typewriter

│   │   │   │   │   │   │   └── Regular

│   │   │   │   │   │   │   ├── BasicLatin.js

│   │   │   │   │   │   │   ├── CombDiacritMarks.js

│   │   │   │   │   │   │   ├── Main.js

│   │   │   │   │   │   │   └── Other.js

│   │   │   │   │   │   └── jax.js

│   │   │   │   │   └── MathJax.js

│   │   │   │   ├── move_outline.js

│   │   │   │   └── utils.js

│   │   │   ├── sphinxify.py

│   │   │   ├── static

│   │   │   │   ├── css

│   │   │   │   │   ├── default.css

│   │   │   │   │   └── pygments.css

│   │   │   │   └── images

│   │   │   │   ├── collapse_expand.png

│   │   │   │   ├── debug-continue.png

│   │   │   │   ├── debug-step-in.png

│   │   │   │   ├── debug-step-out.png

│   │   │   │   ├── debug-step-over.png

│   │   │   │   ├── spyder-hello-docstring.png

│   │   │   │   ├── spyder-nice-docstring-rendering.png

│   │   │   │   └── spyder-sympy-example.png

│   │   │   ├── templates

│   │   │   │   ├── layout.html

│   │   │   │   ├── usage.html

│   │   │   │   └── warning.html

│   │   │   └── tutorial.rst

│   │   ├── icon_manager.py

│   │   ├── __init__.py

│   │   ├── introspection

│   │   │   ├── fallback_plugin.py

│   │   │   ├── __init__.py

│   │   │   ├── jedi_patch.py

│   │   │   ├── jedi_plugin.py

│   │   │   ├── manager.py

│   │   │   ├── module_completion.py

│   │   │   ├── numpy_docstr.py

│   │   │   ├── plugin_client.py

│   │   │   ├── plugin_server.py

│   │   │   ├── README.md

│   │   │   ├── rope_patch.py

│   │   │   ├── rope_plugin.py

│   │   │   ├── tests

│   │   │   │   ├── __init__.py

│   │   │   │   ├── test_fallback_plugin.py

│   │   │   │   ├── test_jedi_plugin.py

│   │   │   │   ├── test_manager.py

│   │   │   │   ├── test_modulecompletion.py

│   │   │   │   ├── test_plugin_client.py

│   │   │   │   ├── test_plugin_server.py

│   │   │   │   ├── test_rope_plugin.py

│   │   │   │   └── test_utils.py

│   │   │   └── utils.py

│   │   ├── iofuncs.py

│   │   ├── ipython

│   │   │   ├── __init__.py

│   │   │   ├── kernelspec.py

│   │   │   ├── spyder_kernel.py

│   │   │   ├── start_kernel.py

│   │   │   ├── style.py

│   │   │   ├── templates

│   │   │   │   ├── blank.html

│   │   │   │   ├── kernel_error.html

│   │   │   │   └── loading.html

│   │   │   └── tests

│   │   │   ├── __init__.py

│   │   │   └── test_spyder_kernel.py

│   │   ├── misc.py

│   │   ├── programs.py

│   │   ├── qthelpers.py

│   │   ├── site

│   │   │   ├── __init__.py

│   │   │   ├── osx_app_site.py

│   │   │   └── sitecustomize.py

│   │   ├── sourcecode.py

│   │   ├── stringmatching.py

│   │   ├── syntaxhighlighters.py

│   │   ├── system.py

│   │   ├── test.py

│   │   ├── tests

│   │   │   ├── ascii.txt

│   │   │   ├── Big5.txt

│   │   │   ├── data

│   │   │   │   ├── example.c

│   │   │   │   ├── example.cpp

│   │   │   │   ├── example.css

│   │   │   │   ├── example.html

│   │   │   │   ├── example.java

│   │   │   │   ├── example.md

│   │   │   │   └── example.R

│   │   │   ├── __init__.py

│   │   │   ├── KOI8-R.txt

│   │   │   ├── test_bsdsocket.py

│   │   │   ├── test_codeanalysis.py

│   │   │   ├── test_dochelpers.py

│   │   │   ├── test_encoding.py

│   │   │   ├── test_environ.py

│   │   │   ├── test_get_words.py

│   │   │   ├── test_iofuncs.py

│   │   │   ├── test_misc.py

│   │   │   ├── test_programs.py

│   │   │   ├── test_sourcecode.py

│   │   │   ├── test_stringmatching.py

│   │   │   ├── test_syntaxhighlighters.py

│   │   │   ├── test_system.py

│   │   │   ├── utf-8.txt

│   │   │   └── windows-1252.txt

│   │   ├── vcs.py

│   │   ├── windows.py

│   │   └── workers.py

│   ├── widgets

│   │   ├── arraybuilder.py

│   │   ├── browser.py

│   │   ├── calltip.py

│   │   ├── colors.py

│   │   ├── comboboxes.py

│   │   ├── dependencies.py

│   │   ├── editor.py

│   │   ├── editortools.py

│   │   ├── explorer.py

│   │   ├── fileswitcher.py

│   │   ├── findinfiles.py

│   │   ├── findreplace.py

│   │   ├── helperwidgets.py

│   │   ├── __init__.py

│   │   ├── internalshell.py

│   │   ├── ipythonconsole

│   │   │   ├── client.py

│   │   │   ├── control.py

│   │   │   ├── debugging.py

│   │   │   ├── help.py

│   │   │   ├── __init__.py

│   │   │   ├── namespacebrowser.py

│   │   │   └── shell.py

│   │   ├── mixins.py

│   │   ├── onecolumntree.py

│   │   ├── pathmanager.py

│   │   ├── projects

│   │   │   ├── configdialog.py

│   │   │   ├── config.py

│   │   │   ├── explorer.py

│   │   │   ├── __init__.py

│   │   │   ├── projectdialog.py

│   │   │   ├── tests

│   │   │   │   ├── __init__.py

│   │   │   │   ├── test_configdialog.py

│   │   │   │   ├── test_projectdialog.py

│   │   │   │   ├── test_project_explorer.py

│   │   │   │   └── test_project.py

│   │   │   └── type

│   │   │   ├── __init__.py

│   │   │   └── python.py

│   │   ├── pydocgui.py

│   │   ├── reporterror.py

│   │   ├── shell.py

│   │   ├── shortcutssummary.py

│   │   ├── sourcecode

│   │   │   ├── base.py

│   │   │   ├── codeeditor.py

│   │   │   ├── __init__.py

│   │   │   ├── kill_ring.py

│   │   │   ├── terminal.py

│   │   │   └── tests

│   │   │   ├── __init__.py

│   │   │   ├── test_autocolon.py

│   │   │   ├── test_autoindent.py

│   │   │   ├── test_breakpoints.py

│   │   │   └── test_codeeditor.py

│   │   ├── status.py

│   │   ├── tabs.py

│   │   ├── tests

│   │   │   ├── data

│   │   │   │   ├── ham.txt

│   │   │   │   ├── spam.cpp

│   │   │   │   └── spam.txt

│   │   │   ├── __init__.py

│   │   │   ├── test_array_builder.py

│   │   │   ├── test_browser.py

│   │   │   ├── test_codeeditor.py

│   │   │   ├── test_dependencies.py

│   │   │   ├── test_editor.py

│   │   │   ├── test_explorer.py

│   │   │   ├── test_findinfiles.py

│   │   │   ├── test_helperwidgets.py

│   │   │   ├── test_mixins.py

│   │   │   ├── test_pathmanager.py

│   │   │   ├── test_pydocgui.py

│   │   │   ├── test_reporterror.py

│   │   │   ├── test_save.py

│   │   │   └── test_status.py

│   │   ├── variableexplorer

│   │   │   ├── arrayeditor.py

│   │   │   ├── collectionseditor.py

│   │   │   ├── dataframeeditor.py

│   │   │   ├── importwizard.py

│   │   │   ├── __init__.py

│   │   │   ├── namespacebrowser.py

│   │   │   ├── objecteditor.py

│   │   │   ├── tests

│   │   │   │   ├── dom_element_test.xml

│   │   │   │   ├── __init__.py

│   │   │   │   ├── issue_2514.csv

│   │   │   │   ├── issue_3896.csv

│   │   │   │   ├── test_arrayeditor.py

│   │   │   │   ├── test_collectioneditor.py

│   │   │   │   ├── test_dataframeeditor.py

│   │   │   │   ├── test_importwizard.py

│   │   │   │   ├── test_namespacebrowser.py

│   │   │   │   ├── test_texteditor.py

│   │   │   │   └── test_utils.py

│   │   │   ├── texteditor.py

│   │   │   └── utils.py

│   │   └── waitingspinner.py

│   └── workers

│   ├── __init__.py

│   └── updates.py

├── spyder_breakpoints

│   ├── breakpoints.py

│   ├── __init__.py

│   ├── locale

│   │   ├── breakpoints.pot

│   │   ├── es

│   │   │   └── LC_MESSAGES

│   │   │   ├── breakpoints.mo

│   │   │   └── breakpoints.po

│   │   ├── fr

│   │   │   └── LC_MESSAGES

│   │   │   ├── breakpoints.mo

│   │   │   └── breakpoints.po

│   │   ├── ja

│   │   │   └── LC_MESSAGES

│   │   │   ├── breakpoints.mo

│   │   │   └── breakpoints.po

│   │   ├── pt_BR

│   │   │   └── LC_MESSAGES

│   │   │   ├── breakpoints.mo

│   │   │   └── breakpoints.po

│   │   └── ru

│   │   └── LC_MESSAGES

│   │   ├── breakpoints.mo

│   │   └── breakpoints.po

│   └── widgets

│   ├── breakpointsgui.py

│   └── __init__.py

├── spyder_io_dcm

│   ├── dcm.py

│   └── __init__.py

├── spyder_io_hdf5

│   ├── hdf5.py

│   └── __init__.py

├── spyder_profiler

│   ├── images

│   │   └── profiler.png

│   ├── __init__.py

│   ├── locale

│   │   ├── es

│   │   │   └── LC_MESSAGES

│   │   │   ├── profiler.mo

│   │   │   └── profiler.po

│   │   ├── fr

│   │   │   └── LC_MESSAGES

│   │   │   ├── profiler.mo

│   │   │   └── profiler.po

│   │   ├── ja

│   │   │   └── LC_MESSAGES

│   │   │   ├── profiler.mo

│   │   │   └── profiler.po

│   │   ├── profiler.pot

│   │   ├── pt_BR

│   │   │   └── LC_MESSAGES

│   │   │   ├── profiler.mo

│   │   │   └── profiler.po

│   │   └── ru

│   │   └── LC_MESSAGES

│   │   ├── profiler.mo

│   │   └── profiler.po

│   ├── profiler.py

│   └── widgets

│   ├── __init__.py

│   └── profilergui.py

└── spyder_pylint

├── images

│   └── pylint.png

├── __init__.py

├── locale

│   ├── es

│   │   └── LC_MESSAGES

│   │   ├── pylint.mo

│   │   └── pylint.po

│   ├── fr

│   │   └── LC_MESSAGES

│   │   ├── pylint.mo

│   │   └── pylint.po

│   ├── ja

│   │   └── LC_MESSAGES

│   │   ├── pylint.mo

│   │   └── pylint.po

│   ├── pt_BR

│   │   └── LC_MESSAGES

│   │   ├── pylint.mo

│   │   └── pylint.po

│   ├── pylint.pot

│   └── ru

│   └── LC_MESSAGES

│   ├── pylint.mo

│   └── pylint.po

├── pylint.py

└── widgets

├── __init__.py

└── pylintgui.py

158 directories, 865 files

pythonxy官网下载_spyder安装包相关推荐

  1. Ubuntu系统 不使用snap安装firefox,使用firefox官网下载的安装包安装firefox

    Ubuntu系统 不使用snap安装firefox,使用firefox官网下载的安装包安装firefox 一.源起 二.寻找原因记录(之前卸载snap的原因!!,本节主要说snap的事,装firefo ...

  2. java安装教程(解决官网下载的安装包为什么没有jre?)

    官网下载的安装包为什么没有jre? 如果进入的是这个网站:https://www.java.com/zh-CN/download/ 那下载下来的不是jdk而就是jre 而我们想要的是jdk,那么就进入 ...

  3. 图文详解如何从官网下载Hadoop安装包

    在把Hadoop的坑都踩了之后 的第二天,终于在MacBook Pro上安装了Hadoop伪分布式系统.我将用详细的步骤把安装Hadoop的过程分享出来,Mac系统上亲测成功,使用windows的小伙 ...

  4. 微赞,你正在使用本地安装, 但未下载完整安装包, 请从微赞官网下载完整安装包后重试....

    你正在使用本地安装, 但未下载完整安装包, 请从微赞官网下载完整安装包后重试. 解决方法: 路径中不能中文. 转载于:https://blog.51cto.com/wutou/1736988

  5. 如何从官网下载JDK安装包?

    下载JDK的安装包. 根据自己的服务器类型,下载相应的jdk版本.这里以linux64位为例介绍,下载的是jdk1.8版本. 步骤:(1)进oracle官网,点击进入Java. (2)进入以后,找到J ...

  6. 官网下载MySQL安装包流程

    1.直接在百度里面搜索MySQL,进入官网: 2.进入MySQL官方网站,单击"DOWNLOADS"下载Tab页,进入下载界面: 3.在下载界面往下滑,找到"MySQL ...

  7. cts游戏手机版_CTS6遨游中国2豪华版下载,CTS6遨游中国2手机版官网豪华版安装包 v1.4 - 游戏盒子下载站...

    CTS6遨游中国2官网手机版这款实现各位驴友遨游中国梦想的模拟驾驶类手机游戏,游戏提供了超多不同类型的车辆,包含公交车.跑车.大卡车等,任你选择体验,随时都可来一场说走就走的自驾游!3D高画质游戏界面 ...

  8. pythonxy官网下载_GitHub - oxtaw/codeparkshare: Python初学者(零基础学习Python、Python入门)书籍、视频、资料、社区推荐...

    PythonShare Python初学者(零基础学习Python.Python入门)书籍.视频.资料.社区推荐 本文 主要 针对 零基础 想学习Python者.本文本文由@史江歌(shijiangg ...

  9. pythonxy官网下载_GitHub - wptyut/codeparkshare: Python初学者(零基础学习Python、Python入门)书籍、视频、资料、社区推荐...

    PythonShare Python初学者(零基础学习Python.Python入门)书籍.视频.资料.社区推荐 本文 主要 针对 零基础 想学习Python者.本文本文由@史江歌(shijiangg ...

  10. pythonxy官网下载_GitHub - holif/codeparkshare: Python初学者(零基础学习Python、Python入门)书籍、视频、资料、社区推荐...

    PythonShare Python初学者(零基础学习Python.Python入门)书籍.视频.资料.社区推荐 本文 主要 针对 零基础 想学习Python者.本文本文由@史江歌(shijiangg ...

最新文章

  1. Spring 集成dubbo 找不到dubbo.xsd 文件的问题的想法概述
  2. Android启动模式详解
  3. hibernate对象管理
  4. 修改mysql导入sql大小限制_修改phpMyAdmin导入SQL文件的大小限制
  5. DBCC CHECKIDENT
  6. spark 持久化 mysql_Spark 从零到开发(八)nginx日志清洗并持久化实战
  7. 这件事,阿里爱了10年
  8. uva 725 Division(暴力模拟)
  9. Matlb中break 和continue 语句
  10. Python---实验九作业
  11. 读书笔记011:《伤寒论》- 手厥阴心包经
  12. 乘基取整法是什么_数字逻辑电路-学习指南
  13. centos 7 下 rabbitmq 3.8.0 erlang 22.1 源码编译安装
  14. python输入圆的半径公式_【公布答案(【输入输出】练习题:Hello, C++)】
  15. 数据分析------数据处理(2)及 AutoML 学习
  16. 浅谈Peer Review(同行评审)
  17. Android 4.0平板,Android4.0.3系统_平板电脑_平板电脑评测-中关村在线
  18. sqlmap基本命令
  19. 【号外】联手腾讯故宫试水“互联网+”
  20. 使用python实现用微信远程控制电脑

热门文章

  1. 【ASM】如何创建ASM磁盘
  2. 系统辨识(四):系统辨识的经典方法
  3. 百战程序员数据结构 课件_结构之战
  4. 部署Screego浏览器实现多人共享屏幕
  5. ESP12F模组-USB转TTL模块-Arduino下载程序
  6. STEP 7-MicroWIN SMART 上传时搜索不到PLC
  7. python 教程 w3 school_Python 模块 | w3cschool菜鸟教程
  8. 如何封装一个自己的win7系统并安装到电脑做成双系统
  9. arcmap中加载底图
  10. 资质申报 - 系统集成企业资质等级评定条件实施细则