实例介绍
sublime 开发 python 必备神器,对于不能在线安装的朋友直接下载解压到本地就可以使用
【实例截图】
【核心代码】
83db31f5-7360-4e7e-9688-62b41b8b4c99
└── anaconda
├── AnacondaKite.sublime-settings
├── anaconda_lib
│ ├── aenum.py
│ ├── autopep
│ │ ├── autopep8_lib
│ │ │ ├── autopep8.py
│ │ │ ├── __init__.py
│ │ │ └── lib2to3
│ │ │ ├── btm_matcher.py
│ │ │ ├── btm_utils.py
│ │ │ ├── fixer_base.py
│ │ │ ├── fixer_util.py
│ │ │ ├── fixes
│ │ │ │ ├── fix_apply.py
│ │ │ │ ├── fix_basestring.py
│ │ │ │ ├── fix_buffer.py
│ │ │ │ ├── fix_callable.py
│ │ │ │ ├── fix_dict.py
│ │ │ │ ├── fix_except.py
│ │ │ │ ├── fix_execfile.py
│ │ │ │ ├── fix_exec.py
│ │ │ │ ├── fix_exitfunc.py
│ │ │ │ ├── fix_filter.py
│ │ │ │ ├── fix_funcattrs.py
│ │ │ │ ├── fix_future.py
│ │ │ │ ├── fix_getcwdu.py
│ │ │ │ ├── fix_has_key.py
│ │ │ │ ├── fix_idioms.py
│ │ │ │ ├── fix_import.py
│ │ │ │ ├── fix_imports2.py
│ │ │ │ ├── fix_imports.py
│ │ │ │ ├── fix_input.py
│ │ │ │ ├── fix_intern.py
│ │ │ │ ├── fix_isinstance.py
│ │ │ │ ├── fix_itertools_imports.py
│ │ │ │ ├── fix_itertools.py
│ │ │ │ ├── fix_long.py
│ │ │ │ ├── fix_map.py
│ │ │ │ ├── fix_metaclass.py
│ │ │ │ ├── fix_methodattrs.py
│ │ │ │ ├── fix_ne.py
│ │ │ │ ├── fix_next.py
│ │ │ │ ├── fix_nonzero.py
│ │ │ │ ├── fix_numliterals.py
│ │ │ │ ├── fix_operator.py
│ │ │ │ ├── fix_paren.py
│ │ │ │ ├── fix_print.py
│ │ │ │ ├── fix_raise.py
│ │ │ │ ├── fix_raw_input.py
│ │ │ │ ├── fix_reduce.py
│ │ │ │ ├── fix_renames.py
│ │ │ │ ├── fix_repr.py
│ │ │ │ ├── fix_set_literal.py
│ │ │ │ ├── fix_standarderror.py
│ │ │ │ ├── fix_sys_exc.py
│ │ │ │ ├── fix_throw.py
│ │ │ │ ├── fix_tuple_params.py
│ │ │ │ ├── fix_types.py
│ │ │ │ ├── fix_unicode.py
│ │ │ │ ├── fix_urllib.py
│ │ │ │ ├── fix_ws_comma.py
│ │ │ │ ├── fix_xrange.py
│ │ │ │ ├── fix_xreadlines.py
│ │ │ │ ├── fix_zip.py
│ │ │ │ └── __init__.py
│ │ │ ├── Grammar.txt
│ │ │ ├── __init__.py
│ │ │ ├── main.py
│ │ │ ├── patcomp.py
│ │ │ ├── PatternGrammar.txt
│ │ │ ├── pgen2
│ │ │ │ ├── conv.py
│ │ │ │ ├── driver.py
│ │ │ │ ├── grammar.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── literals.py
│ │ │ │ ├── parse.py
│ │ │ │ ├── pgen.py
│ │ │ │ ├── tokenize.py
│ │ │ │ └── token.py
│ │ │ ├── pygram.py
│ │ │ ├── pytree.py
│ │ │ └── refactor.py
│ │ ├── autopep_wrapper.py
│ │ └── __init__.py
│ ├── builder
│ │ ├── __init__.py
│ │ └── python_builder.py
│ ├── callback.py
│ ├── constants.py
│ ├── contexts.py
│ ├── decorators.py
│ ├── explore_panel.py
│ ├── helpers.py
│ ├── import_validator.py
│ ├── info.py
│ ├── __init__.py
│ ├── ioloop.py
│ ├── jedi
│ │ ├── api
│ │ │ ├── classes.py
│ │ │ ├── completion.py
│ │ │ ├── helpers.py
│ │ │ ├── __init__.py
│ │ │ ├── interpreter.py
│ │ │ ├── keywords.py
│ │ │ ├── replstartup.py
│ │ │ └── usages.py
│ │ ├── cache.py
│ │ ├── common.py
│ │ ├── _compatibility.py
│ │ ├── debug.py
│ │ ├── evaluate
│ │ │ ├── analysis.py
│ │ │ ├── cache.py
│ │ │ ├── compiled
│ │ │ │ ├── fake
│ │ │ │ │ ├── builtins.pym
│ │ │ │ │ ├── datetime.pym
│ │ │ │ │ ├── _functools.pym
│ │ │ │ │ ├── io.pym
│ │ │ │ │ ├── posix.pym
│ │ │ │ │ ├── _sqlite3.pym
│ │ │ │ │ ├── _sre.pym
│ │ │ │ │ └── _weakref.pym
│ │ │ │ ├── fake.py
│ │ │ │ ├── getattr_static.py
│ │ │ │ ├── __init__.py
│ │ │ │ └── mixed.py
│ │ │ ├── context.py
│ │ │ ├── docstrings.py
│ │ │ ├── dynamic.py
│ │ │ ├── filters.py
│ │ │ ├── finder.py
│ │ │ ├── flow_analysis.py
│ │ │ ├── helpers.py
│ │ │ ├── imports.py
│ │ │ ├── __init__.py
│ │ │ ├── instance.py
│ │ │ ├── iterable.py
│ │ │ ├── jedi_typing.py
│ │ │ ├── param.py
│ │ │ ├── pep0484.py
│ │ │ ├── precedence.py
│ │ │ ├── recursion.py
│ │ │ ├── representation.py
│ │ │ ├── site.py
│ │ │ ├── stdlib.py
│ │ │ └── sys_path.py
│ │ ├── __init__.py
│ │ ├── __main__.py
│ │ ├── parser
│ │ │ ├── cache.py
│ │ │ ├── __init__.py
│ │ │ ├── parser.py
│ │ │ ├── pgen2
│ │ │ │ ├── grammar.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── parse.py
│ │ │ │ └── pgen.py
│ │ │ ├── python
│ │ │ │ ├── diff.py
│ │ │ │ ├── grammar2.7.txt
│ │ │ │ ├── grammar3.4.txt
│ │ │ │ ├── grammar3.5.txt
│ │ │ │ ├── grammar3.6.txt
│ │ │ │ ├── __init__.py
│ │ │ │ ├── parser.py
│ │ │ │ └── tree.py
│ │ │ ├── tokenize.py
│ │ │ ├── token.py
│ │ │ └── tree.py
│ │ ├── parser_utils.py
│ │ ├── refactoring.py
│ │ ├── settings.py
│ │ └── utils.py
│ ├── jediusages.py
│ ├── jsonclient.py
│ ├── kite.py
│ ├── linting
│ │ ├── anaconda_mccabe.py
│ │ ├── anaconda_mypy.py
│ │ ├── anaconda_pep257.py
│ │ ├── anaconda_pep8.py
│ │ ├── anaconda_pyflakes.py
│ │ ├── anaconda_pylint.py
│ │ ├── gutter_mark_themes
│ │ │ ├── alpha-illegal.png
│ │ │ ├── alpha-violation.png
│ │ │ ├── alpha-warning.png
│ │ │ ├── bright-illegal.png
│ │ │ ├── bright-violation.png
│ │ │ ├── bright-warning.png
│ │ │ ├── dark-illegal.png
│ │ │ ├── dark-violation.png
│ │ │ ├── dark-warning.png
│ │ │ ├── hard-illegal.png
│ │ │ ├── hard-violation.png
│ │ │ ├── hard-warning.png
│ │ │ ├── knob-illegal.png
│ │ │ ├── knob-violation.png
│ │ │ ├── knob-warning.png
│ │ │ ├── retina-illegal.png
│ │ │ ├── retina-violation.png
│ │ │ ├── retina-warning.png
│ │ │ ├── simple-illegal.png
│ │ │ ├── simple-violation.png
│ │ │ └── simple-warning.png
│ │ ├── __init__.py
│ │ ├── linter.py
│ │ ├── mccabe.py
│ │ ├── pycodestyle.py
│ │ ├── pydocstyle
│ │ │ ├── checker.py
│ │ │ ├── cli.py
│ │ │ ├── config.py
│ │ │ ├── data
│ │ │ │ ├── imperatives_blacklist.txt
│ │ │ │ └── imperatives.txt
│ │ │ ├── __init__.py
│ │ │ ├── __main__.py
│ │ │ ├── parser.py
│ │ │ ├── utils.py
│ │ │ ├── violations.py
│ │ │ └── wordlists.py
│ │ ├── pyflakes
│ │ │ ├── checker.py
│ │ │ ├── __init__.py
│ │ │ └── messages.py
│ │ └── sublime.py
│ ├── logger.py
│ ├── persistent_list.py
│ ├── phantoms.py
│ ├── progress_bar.py
│ ├── six.py
│ ├── snowballstemmer
│ │ ├── among.py
│ │ ├── basestemmer.py
│ │ ├── danish_stemmer.py
│ │ ├── dutch_stemmer.py
│ │ ├── english_stemmer.py
│ │ ├── finnish_stemmer.py
│ │ ├── french_stemmer.py
│ │ ├── german_stemmer.py
│ │ ├── hungarian_stemmer.py
│ │ ├── __init__.py
│ │ ├── italian_stemmer.py
│ │ ├── norwegian_stemmer.py
│ │ ├── porter_stemmer.py
│ │ ├── portuguese_stemmer.py
│ │ ├── romanian_stemmer.py
│ │ ├── russian_stemmer.py
│ │ ├── spanish_stemmer.py
│ │ ├── swedish_stemmer.py
│ │ └── turkish_stemmer.py
│ ├── tooltips.py
│ ├── _typing.py
│ ├── unix_socket.py
│ ├── vagrant.py
│ ├── worker.py
│ └── workers
│ ├── __init__.py
│ ├── interpreter.py
│ ├── local_process.py
│ ├── local_worker.py
│ ├── market.py
│ ├── process.py
│ ├── remote_process.py
│ ├── remote_worker.py
│ ├── vagrant_process.py
│ ├── vagrant_worker.py
│ └── worker.py
├── anaconda.py
├── anaconda_server
│ ├── commands
│ │ ├── autocomplete.py
│ │ ├── autoformat.py
│ │ ├── base.py
│ │ ├── complete_parameters.py
│ │ ├── doc.py
│ │ ├── find_usages.py
│ │ ├── goto.py
│ │ ├── import_validator.py
│ │ ├── __init__.py
│ │ ├── lint.py
│ │ ├── mccabe.py
│ │ ├── mypy.py
│ │ ├── pep257.py
│ │ ├── pep8.py
│ │ ├── pyflakes.py
│ │ ├── pylint.py
│ │ └── rename.py
│ ├── docker
│ │ └── start
│ ├── handlers
│ │ ├── autoformat_handler.py
│ │ ├── __init__.py
│ │ ├── jedi_handler.py
│ │ ├── python_lint_handler.py
│ │ └── qa_handler.py
│ ├── __init__.py
│ ├── jsonserver.py
│ ├── lib
│ │ ├── anaconda_handler.py
│ │ ├── compat
│ │ │ ├── __init__.py
│ │ │ ├── python2.py
│ │ │ └── python3.py
│ │ ├── contexts.py
│ │ ├── __init__.py
│ │ ├── meta_handler.py
│ │ ├── path.py
│ │ └── registry.py
│ ├── minserver.py
│ └── process.py
├── Anaconda.sublime-settings
├── commands
│ ├── autoformat.py
│ ├── autoimport.py
│ ├── complete_func_args.py
│ ├── disable_linting.py
│ ├── doc.py
│ ├── enable_linting.py
│ ├── find_usages.py
│ ├── get_lines.py
│ ├── goto.py
│ ├── __init__.py
│ ├── mccabe.py
│ ├── next_lint_error.py
│ ├── prev_lint_error.py
│ ├── python_build.py
│ ├── rename.py
│ ├── set_python_interpreter.py
│ ├── test_runner.py
│ └── vagrant.py
├── Completion Rules.tmPreferences
├── Context.sublime-menu
├── css
│ ├── phantom.css
│ └── popup.css
├── Default (Linux).sublime-keymap
├── Default (OSX).sublime-keymap
├── Default.sublime-commands
├── Default (Windows).sublime-keymap
├── LICENSE
├── LICENSE.SublimeLinter
├── listeners
│ ├── autopep8.py
│ ├── completion.py
│ ├── __init__.py
│ ├── linting.py
│ └── signatures.py
├── messages
│ ├── 0.1.4.txt
│ ├── 0.1.5.txt
│ ├── 0.1.6.txt
│ ├── 0.1.7.txt
│ ├── 0.1.8.txt
│ ├── 0.1.9.txt
│ ├── 0.2.0.txt
│ ├── 0.2.1,txt
│ ├── 0.2.2.txt
│ ├── 1.0.0.txt
│ ├── 1.0.1.txt
│ ├── 1.1.0.txt
│ ├── 1.2.0.txt
│ ├── 1.2.1.txt
│ ├── 1.2.2.txt
│ ├── 1.2.3.txt
│ ├── 1.2.4.txt
│ ├── 1.2.5.txt
│ ├── 1.2.6.txt
│ ├── 1.2.7.txt
│ ├── 1.2.8.txt
│ ├── 1.2.9.txt
│ ├── 1.3.0.txt
│ ├── 1.3.1.txt
│ ├── 1.3.2.txt
│ ├── 1.3.3.txt
│ ├── 1.3.4.txt
│ ├── 1.3.5.txt
│ ├── 1.3.6-1.txt
│ ├── 1.3.6.txt
│ ├── 1.3.7.txt
│ ├── 1.4.0.txt
│ ├── 1.4.10.txt
│ ├── 1.4.11.txt
│ ├── 1.4.12.txt
│ ├── 1.4.13.txt
│ ├── 1.4.14.txt
│ ├── 1.4.15.txt
│ ├── 1.4.16.txt
│ ├── 1.4.17.txt
│ ├── 1.4.18.txt
│ ├── 1.4.19.txt
│ ├── 1.4.1.txt
│ ├── 1.4.20.txt
│ ├── 1.4.21.txt
│ ├── 1.4.22.txt
│ ├── 1.4.23.txt
│ ├── 1.4.24.txt
│ ├── 1.4.25.txt
│ ├── 1.4.26.txt
│ ├── 1.4.27.txt
│ ├── 1.4.28.txt
│ ├── 1.4.2.txt
│ ├── 1.4.3.txt
│ ├── 1.4.4.txt
│ ├── 1.4.5.txt
│ ├── 1.4.6.txt
│ ├── 1.4.7.txt
│ ├── 1.4.8.txt
│ ├── 1.4.9.txt
│ ├── 2.0.0.txt
│ ├── 2.0.1.txt
│ ├── 2.0.2.txt
│ ├── 2.0.3.txt
│ ├── 2.0.4.txt
│ ├── 2.0.5.txt
│ ├── 2.0.6.txt
│ ├── 2.0.7.txt
│ ├── 2.0.8.txt
│ ├── 2.1.0.txt
│ ├── 2.1.10.txt
│ ├── 2.1.11.txt
│ ├── 2.1.12.txt
│ ├── 2.1.13.txt
│ ├── 2.1.14.txt
│ ├── 2.1.15.txt
│ ├── 2.1.16.txt
│ ├── 2.1.17.txt
│ ├── 2.1.18.txt
│ ├── 2.1.19.txt
│ ├── 2.1.1.txt
│ ├── 2.1.20.txt
│ ├── 2.1.21.txt
│ ├── 2.1.22.txt
│ ├── 2.1.23.txt
│ ├── 2.1.24.txt
│ ├── 2.1.25.txt
│ ├── 2.1.2.txt
│ ├── 2.1.3.txt
│ ├── 2.1.4.txt
│ ├── 2.1.5.txt
│ ├── 2.1.6.txt
│ ├── 2.1.7.txt
│ ├── 2.1.8.txt
│ ├── 2.1.9.txt
│ └── install.txt
├── messages.json
├── Preferences.sublime-settings
├── PythonConsoleDark.hidden-tmTheme
├── PythonConsole.hidden-tmLanguage
├── PythonConsole.hidden-tmTheme
├── PythonConsole.YAML-tmLanguage
├── README.md
├── release.sh
├── requirements.py3.txt
├── setup.py
├── templates
│ ├── Main.sublime-menu.tpl
│ ├── phantoms
│ │ └── default.tpl
│ ├── python_build.tpl
│ └── tooltips
│ ├── doc.tpl
│ ├── signature_doc.tpl
│ └── signature.tpl
├── test
│ ├── __init__.py
│ ├── test_complete_parameters.py
│ ├── test_completion.py
│ ├── test_doc.py
│ ├── test_find_usages.py
│ ├── test_goto.py
│ ├── test_lint.py
│ ├── test_qa.py
│ └── _usages_helper.py
├── tox.ini
└── version.py
37 directories, 444 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论