Wing что это за программа
Перейти к содержимому

Wing что это за программа

  • автор:

Wing Python IDE

This is a minimalist guide for getting started quickly with Wing Pro. For a more in-depth introduction, try the Tutorial.

Wing Pro is a light-weight yet powerful integrated development environment that was designed from the ground up for Python. Once you’re up to speed with Wing you should find that:

  • Wing speeds up your development of new code
  • Wing makes it easier to understand and work with existing code
  • Wing reveals errors earlier in the development process
  • Wing makes it easier to find and fix bugs
  • Wing adapts to your needs and style

This is made possible through deep code analysis (both static and runtime), a focus on interactive development in the live runtime, high-level editing operations and refactoring, continuous early error detection, support for test-driven development, powerful always-on debugger, seamless support for remote and containerized development, and extreme configurability.

Let’s get started with Wing Pro!

Install Python

If you don’t already have Python on your system, install it now. Two good options are:

  • Obtain the standard Python distribution from python.org
  • Use Anaconda for seamless access to many third party Python libraries. See Anaconda package lists for a list of the available libraries.

Install Wing

If you don’t already have Wing installed, download it now. For detailed installation instructions, see Installing Wing.

Start Wing

Wing can be launched from the start menu on Windows, by double clicking on the application on macOS, or with wing9.1 on Linux. In Wing Personal the executable is instead named wing-personal9 and in Wing 101 it is named wing-101-9 .

For more information, see Running Wing.

Wing Pro requires a license to run. If you don’t have a license, you can obtain a 30-day trial the first time you start it. Wing Personal and Wing 101 are free to run without a license.

Set up a Project

After Wing is running, select New Project from the Project menu to create a new project. This dialog lets you choose or create the source directory and choose or create the Python environment you want to use for your new project. When creating a new source directory, you can optionally pull a revision control repository into it. Wing Pro can also create and install packages into new virtualenv, pipenv, Anaconda env, and Docker container environments.

If you choose Create Blank Project , you can configure your project later with the following steps:

  • Use Add Existing Directory in the Project menu to add your sources to the project. It’s best to constrain this to the directories you are actively working with and let Wing find the libraries you use through the Python Path .
  • Use Project Properties in the Project menu to set Python Executable to the python.exe or other interpreter executable you want to use with your project. If Python is not on the PATH , set this to the the full path that is in sys.executable in the desired Python installation.
  • If your code alters sys.path or loads modules in a non-standard way then you may need to set Python Path in Project Properties so that Wing can find your modules for auto-completion, refactoring, debugging, testing, and other features.
  • You may want to right-click on your main entry point in the Project tool and select Set As Main Entry Point so that debugging always starts there.
  • Use Save Project As in the Project menu to save your project to disk.
  • Use the Packages tool in the Tools menu to manage Python packages in your selected Python environment.

See Project-Wide Properties and Per-File Properties for a description of all available properties.

Notice that Wing also offers other project types in the New Project dialog, including one for connecting to a remote host via SSH, running with Docker or other containers, accessing a Vagrant instance, working with Windows Subsystem for Linux, and a project type for each of the frameworks, tools, and libraries listed in How-Tos.

Wing may consume significant CPU time when it first analyzes your code base. Progress is indicated in the lower left of the IDE window. Once this is done, the results are cached across sessions and Wing should run with a snappy and responsive interface. See Source Code Analysis to learn how Wing’s source analysis system works.

Wing 101 does not have projects. Configuring the Python environment is instead done with Configure Python in the Edit menu.

Basic Configuration

You are now ready to start working with code, but may want to make a few configuration changes first:

Display Colors — The User Interface > Display Mode preference selects whether Wing runs with a light or dark display style. This is also available in the high-level configuration menu in the top right of Wing’s window. The specific styles used are selected with the User Interface > Light Theme and User Interface > Dark Theme preferences. The editor’s colors can be configured separately with the User Interface > Light Editor and User Interface > Dark Editor preference.

Key Bindings — Wing can emulate VI/Vim, Visual Studio, Emacs, Eclipse, XCode, MATLAB, and Brief editors, as selected from Keyboard Personality in the Edit menu or with the User Interface > Keyboard > Personality preference.

Tab Key — The default tab key action depends on the selected keyboard personality and in some cases file type, context, and whether or not there is a selection in the editor. This can be changed from the User Interface > Keyboard > Tab Key Action preference.

Completion Keys — By default, the auto-completer uses the Tab key for completion, but other keys can be added using the Editor > Auto-completion > Completion Keys preference.

There are many other options in Preferences.

Navigating Code

Wing Pro provides a number of different ways to navigate the structure of your code, and several methods for quickly finding symbols or files by name:

Source Index menus at the top of the editor provide quick access to other parts of a source file.

Goto-definition is available from the Source menu, and by right-clicking on symbols in the editor, Python Shell and Debug Console. Use the forward/back history buttons at the top left of the editor to return from the point of definition.

Find Points of Use in Wing Pro’s Source menu shows where the current symbol is being used. This distinguishes between separate but like-named symbols.

Find Symbol in the Source menu in Wing Pro and Wing Personal jumps to a symbol defined in the current file when you type a fragment of its name.

Find Symbol in Project in the Source menu in Wing Pro works the same way but searches all files in the project.

Open From Project in the File menu in Wing Pro and Wing Personal provides a similar interface for quickly opening project files.

See Navigating Source for details on the above.

Source Browser in the Tools menu in Wing Pro and Wing Personal provides module or class oriented display of the structure of your code. Details

Source Assistant in the Tools menu shows detailed information about symbols selected in the editor, auto-completer, Source Browser, Python Shell, Project, and other tools. Details

Searching

Wing Pro provides several different interfaces for searching your code. Which you use depends on what you want to search and how you prefer to interact with the search and replace functionality:

Toolbar search is a quick way to search the current file. Details

Search in the Tools menu shows the Search tool, which provides incremental text, wildcard, and regular expression search and replace in selections and the current file or documentation page. Details

Mini-search in Wing Pro and Wing Personal provides powerful keyboard-driven search and replace. The key bindings listed in the Mini-search area of the Edit menu display the search entry area at the bottom of the window. Details

Search in Files in the Tools menu in Wing Pro and Wing Personal shows the Search in Files tool, which provides wildcard and regular expression search and replace in filtered sets of files, directories, named file sets, and within the project and documentation. Details.

Editing Code

Wing Pro’s editor is designed to speed up the process of writing and modifying Python code, and to reduce the incidence of coding errors. Its features include:

Auto-completion in Wing’s editor, Python Shell and Debug Console speeds up typing and reduces coding errors. The auto-completer uses Tab by default for completion, but this can be changed in the Editor > Auto-completion > Completion Keys preference. This feature is disabled by default in Wing 101. Details

Auto-indent in Wing Pro and Wing Personal matches the file’s existing indentation. When multiple lines are pasted, they are re-indented according to context. A single Undo reverts an unwanted indentation change. A selected range of code may be re-indented as a block using Indentation in the Source menu or the indentation toolbar group. The Indentation tool may be used to convert a whole file’s indentation style. Details

Auto-Editing in Wing Pro implements a range of operations such as auto-entering closing parentheses, brackets, braces, and quotes. Among other things, Wing also auto-enters invocation arguments, manages new blocks with the : key, and corrects out-of-order typing. Auto-editing operations can be enabled and disabled in the Editor > Auto-editing preferences group. The default set includes those operations that don’t affect finger memory. The others are well worth learning. Details

Refactoring operations in Wing Pro, accessed from the Refactoring menu, implement automated renaming and moving of symbols, creating functions or methods out of existing code, and introducing variables much more quickly than by manually editing code. Details

Multiple Selections can be made with Multiple Selections in the Edit menu, the multiple selections toolbar item, and by pressing Ctrl+Alt (or Command+Option on macOS) while making a selection with the mouse. Once multiple selections have been made, edits made will be applied to all the selections at once. Details

Code Warnings are shown in Wing Pro for syntax errors, indentation problems, unreachable code, use of undefined variables and attributes, unresolvable imports, and some other problems. External checkers like flake8, mypy, pep8, and pylint may also be configured as sources for the code warnings. Warnings are shown on the editor with details shown in a tooltip when the mouse hovers over the warning indicator. Warnings can be navigated from the warnings menu in the top right of the editor and managed from the Code Warnings tool. Details

Snippets in Wing Pro are included in Wing’s auto-completer as a quick way to enter commonly repeated patterns for coding standards, documentation, testing, and so forth. Data entry for snippet arguments is inline in the editor. Use the Tab key to move between the fields. Edit or add snippets in the Snippets tool. Details

Turbo Completion in Wing Pro is an optional auto-completion mode for Python, made possible by Wing’s powerful source analysis engine. When the Editor > Auto-completion > Python Turbo Mode preference is enabled, Wing turns every non-symbol key into a completion key in contexts where a new symbol name is not being typed. Details

Quick Selection operations in the Edit > Select menu allow selecting whole statements, blocks, or scopes before copying, editing, or searching through them. Details

Debugging Code

Wing’s debugger is a powerful tool for finding and fixing bugs, understanding unfamiliar code, and writing new code interactively. You can launch code from the Debug menu or toolbar, from the Python Shell, or from outside of the IDE either on the same machine or on another host. Wing also supports working with code running on containers like those provided by Docker.

Breakpoints can be set by clicking on the breakpoint margin to the left of the editor. Stepping operations are in the Debug menu and toolbar.

The Stack Data tool is used to inspect or change program data. Right-click on items to display the item as an array or in textual form. Hovering the mouse over a symbol in the editor shows the value for that symbol in a tooltip, if available on the active debug stack. Pressing Shift-Space shows tooltips for all symbols visible in the editor.

Debug process I/O is shown in the Debug I/O tool, or optionally in an external console.

Other debugger features include:

Interactive Debugging is supported by Wing Pro’s Debug Console, which provides a Python prompt that executes code in the current debug stack frame. When the debugger is paused, Wing also uses the live runtime state to populate the auto-completer in the editor, Source Assistant, goto-definition, and other tools. Details

Conditional Breakpoints can be used in Wing Pro to isolate and understand complex bugs by stopping before they occur. Using a conditional breakpoint to isolate a broken case and the Debug Console to design a fix is far more productive than relaunching code repeatedly. Details

Move Program Counter is supported by Wing Pro, by right-clicking in the editor and selecting Move Program Counter Here . Because of how Python is implemented, this feature works only in the innermost stack frame and it does not work when the debugger is stopped on an exception.

Watching Values in Wing Pro by right-clicking on the editor or any of the data views tracks values over time by symbolic name or object reference in the Watch tool. Expressions can be also be watched. Details

Launch Configurations in the Project menu in Wing Pro and Wing Personal define different runtime environments for debugging, executing, and unit testing your code. Details.

Named Entry Points in the Debug menu in Wing Pro and Wing Personal provide a way to launch the same file with different debug environments. Details

Other Features

Wing Pro includes a number of other features designed to make Python coding easier and more productive:

Python Shell — Wing’s Python Shell lets you try out code in an independent sandbox process. To enable debugging, click the bug icon in the top right of the Python Shell . In Wing Pro and Wing Personal, the shell provides auto-completion, goto-definition, and is integrated with the Source Assistant. Details

Unit Testing in Wing Pro’s Testing tool works with unittest, doctest, pytest, nose, and Django unit tests. You can run tests suites, view the results, and debug tests. Details

Version Control in Wing Pro supports revision control with Mercurial, Git, Subversion, Perforce, Bazaar, and CVS. Wing auto-detects which systems are used in your project and shows the appropriate additional menus and tools in the Tools menu. Details.

Difference and Merge in the Source menu can be used to compare and merge files and directories on disk, files open in the IDE, an unsaved buffer with disk, and a working copy with its revision control repository. Details

Remote Development is easy in Wing Pro, to remote hosts, virtual machines, or containers that are accessible via SSH. In this model of remote development, Wing works seamlessly and securely with files stored entirely on the remote host. Use the Remote Hosts item in the Project menu to configure a remote host, then set the Python Executable in Project Properties to that remote host, and use Add Existing Directory in the Project menu to add your remote directories to the project. Wing can edit, debug, test, search, inspect, and manage files, run the Python Shell, and execute OS Commands on the remote host in the same way as it does when working locally. Details

Package management is available for virtualenv and pipenv, using the Packages tool in the Tools menu. This can be used to install, remove, and manage the packages that are installed into your project’s Python environment. Details.

Containers like those provided by Docker are also supported. In this development model, files are stored locally but code is run inside a containerized environment. Details OS Commands in the Tools menu in Wing Pro and Wing Personal’s displays the OS Commands tool, which execute external tools for build, code generation, and other purposes. Details.

Preferences in the Edit menu (or WingPro menu on macOS) gives you control of the overall layout and color of the IDE, among many other options. Right click on tool and editor tabs for layout options, or drag tabs to move them or create new splits. Right-click on the toolbar to configure which tools are visible or to add your own. See Customization for details.

Perspectives in Wing Pro and Wing Personal let you save named tool panel layouts. Details.

Other Features like bookmarks, code folding, keyboard macros are also available, and you can extend Wing by writing Python scripts.

Further Reading

As you work with Wing Pro on your own software development projects, the following resources may be useful:

Wing IDE

Кроссплатформенная среда разработки для языка Python. Более функциональная, чем IDLE, не столь сложная, как PyCharm.

Выпускается в следующию вариантах:

  • Wing 101 — для начинающих и обучения программированию. Бесплатная.
  • Wing Personal — для домашнего использования. Также бесплатная, может быть использована и в школах.
  • Wing Pro — профессиональная платная версия.

Внимание! Устаревшие версии Wing IDE могут не поддерживать новые версии языка Python! Например, Wing IDE 9 поддерживает версии Python от 3.3 до 3.11 (включительно), но не будет поддерживать будущую версию 3.12. Wing IDE 8 поддерживает Python до версии 3.10 (включительно) и не поддерживает Python 3.11. Wing IDE 7 поддерживает Python до версии 3.9 (включительно) и не поддерживает Python 3.10 и более новый. Поэтому рекомендуется выбирать последнюю версию Wing IDE. Если вы обновили Python на более новую версию (например, обновили Python с версии 3.10 до версии 3.11), проверьте, что версия Wing IDE поддерживает новую версию Python. При необходимости обновите версию Wing IDE. Это не относится к обновлению релиза, то есть третьего числа в номере версии, например, к обновлению версии Python с 3.10.8 до 3.10.9.

Содержание

Установка в МОС

Установка производится из rpm-пакета, который нужно скачать со страницы http://wingware.com/

Для скачивания среды Wing 101 откройте страницы http://wingware.com/downloads/wing-101

Для скачивания среды Wing Personal откройте страницу http://wingware.com/downloads/wing-personal

На этих страницах нажмите на кнопку справа «RPM Package 64-bit». Если вы открываете сайт не в системе Linux и таких кнопок нет, выберите внизу страницы «Other OSes: Linux».

Прямые ссылки на скачивание версии 9.0.2 в виде RPM-пакета (последняя версия на январь 2023):

Установить пакеты нужно при помощи команды apt-get install <имя-файла-с-пакетом> с правами администратора. Например, для установки версии 9.0.2 нужно выполнить такие команды, запустив их в том же каталоге, в котором сохранены скачанные файлы:

Для установки Wing 101:

Для установки Wing Personal:

Или если вы скачали rpm-пакеты, то установить все скачанные rpm-пакеты, которые лежат в текущем каталоге, можно при помощи маски файла:

Скачивание и установку можно сделать одной командой.

Для скачивания и установки Wing 101 версии 9.0.2:

Для скачивания и установки Wing Personal версии 9.0.2:

В оболочке КДЕ МОС ярлыки для запуска приложений будут находиться в меню «Разработка — Другие». Если хочется перенести ярлыки в меню «Разработка — IDE», то необходимо отредактировать desktop-файлы, в которых хранится информация о запуске среды. Это необходимо сделать из консоли под пользователем root. Например, если для редактирования использовать редактор nano, то запустите редактор для правки следующих файлов:

В редакторе nano найдите строку Categories=Python;Development; и допишите в конец «IDE», то есть должно получиться Categories=Python;Development;IDE . Эти файлы после редактирования можно скопировать на все компьютеры.

Установка в Windows

Перед установкой Wing IDE сначала необходимо установить Python.

Скачать последнюю версию Wing 101 можно со страницы http://wingware.com/downloads/wing-101/. Если вы открываете эту страницу не в Windows, то найдите текст «Other OSes» и нажмите на «Windows». Нажмите на кнопку «Windows installer».

Скачать последнюю версию Wing Personal можно со страницы http://wingware.com/downloads/wing-personal/.

Прямые ссылки на скачивание версии 9.0.2 для Windows (последняя версия на январь 2023):

Запустите программу установки с правами администратора, установка затруднений не представляет.

При первом запуске Wing IDE спросит разрешение на изменение настроек Firewall для доступа к удалённой отладке, для локальной разработки эта настройка не важна (можно разрешить, можно запретить).

Проверка работы среды Wing IDE

Запустите среду. В правой нижней части экрана будет панель «Оболочка Питон» (Python shell). В этой панели запускается оболочка языка Python, там должна быть информация о версии интерпретатора Python.

Если оболочка Python не запустилась, то возможные причины для этого следующие:

  • Интерпретатор Python не был установлен. Установите его.
  • Интерпретатор Python в системе Windows был установлен не в C:\Program Files, а в профиль пользователя. Повторите установку, проверив, что установка производится для всех пользователей в каталог C:\Program files.
  • Интерпретатор Python в системе Windows был установлен, но не был добавлен в переменную PATH. Повторите установку, выбрав на первом экране опцию «Добавить python.exe в PATH».
  • Используется новая версия Python, которая не поддерживается данной версией Wing IDE. Используйте последнюю версию среды Wing IDE.

Затем создайте новую программу через меню «Файл — Новый» (File — New) или нажатием на Ctrl+N. Вставьте следующий текст программы.

Сохраните файл, при сохранении укажите расширение .py для файла. Запустите программу, нажав на зелёную стрелку на панели инструментов вверху. В среде Wing 101 результат запуска появится в панели «Оболочка Python» (Python shell).

В среде Wing Personal программа запускается в панели «I/O Отладки» (Debug I/O). Там же запускается программа и в режиме отладки в среде Wing 101.

Wing, среда разработки, предназначенная для Python

о крыле

В следующей статье мы рассмотрим Wing. Это IDE, разработанная Wingware и специально разработан для языка программирования Python. Wing предлагает нам множество функций, таких как автозаполнение, автоматическое редактирование, браузер исходного кода, просмотр кода, а также локальная и удаленная отладка, чтобы мы могли разрабатывать наши программы. В бесплатных версиях мы не найдем всех этих опций, хотя мы найдем их много.

Это интегрированная среда разработки (IDE) который был разработан, чтобы сократить время разработки и отладки. Он обеспечивает хорошую помощь в кодировании или поиске ошибок. Облегчает навигацию и понимание кода Python.

Редактор Wing ускоряет разработку Python, предоставляя автозаполнение и контекстно-зависимую документацию. Это также позволит нам иметь автоматическое редактирование, сворачивание кода, множественный выбор, закладки и многое другое. Wing может эмулировать vi, emacs, Eclipse, Visual Studio и Xcode..

Wing упрощает обработку кода с помощью определения goto, поиск использования, поиск символов в проекте и имеет мощную опцию поиска. Он также предложит нам сотни вариантов конфигурации влияет на эмуляцию редактора, дизайн пользовательского интерфейса, темы отображения, раскраску синтаксиса и многое другое. Новые функции могут быть добавлены в IDE написание кода Python, который обращается к API сценариев Wing.

IDE Wing доступен в трех различных версиях. Wing Pro, коммерческая версия полнофункциональный. Эта версия особенно подходит для профессиональных программистов. У нас также есть в наличии Wing Personal, бесплатная версия и что в нем отсутствуют некоторые функции, доступные в коммерческой версии. Это ориентировано на студентов и болельщиков. Последняя доступная версия Wing 101. Это очень упрощенная бесплатная версия., для обучения начинающих программистов.

Как я говорю, Wing Personal теперь бесплатный продукт и больше не требует лицензии. бежать. Он включает в себя такие инструменты, как браузер исходного кода, PyLint и команды операционной системы. Он также поддерживает API сценариев. Тем не менее, Wing Personal не включает расширенных функций редактирование, отладка, тестирование и администрирование кода коммерческой версии. В этой версии у нас также не будет удаленного доступа к хосту, рефакторинга, использования поиска, контроля версий, модульных тестов, интерактивной отладки, отладки нескольких процессов и вторичных процессов, а также других функций. Чтобы иметь возможность пользоваться всеми из них, нам нужно будет получить коммерческую версию.

Общие характеристики Wing 6

Локальная ошибка крыла

Wing 6 представляет новые мощные функции. Некоторые из них:

  • Поддержка для множественный выбор.
  • В Поддержка Raspberry Pi.
  • Поддержка Питон 3.6 / 3.7 и Stackless 3.4.
  • Автозаполнение в строках и комментариях.
  • Индикатор синтаксиса e индикаторы ошибок. Подсветка синтаксиса для файлов Markdown.
  • Оптимизированный отладчик, особенно для многопоточного кода. Останавливает отладчик Wing на новой встроенной точке останова (). Также включена поддержка отладчика для cygwin Python 3.6.
  • У нас будет возможность восстановить выбор редактор после отмены и повтора.
  • Добавлена ​​палитра темные цвета.
  • Поддержка пользовательские сборки Python, в Windows
  • Одновременное обновление из недавних меню различных экземпляров Wing.
  • Поддержка Django 1.10, 1.11 и 2.0.
  • Улучшенная визуализация имен потоков, запущенных модулем threading.
  • Крыло имеет гибкий пользовательский интерфейс. Все идеально размещено, чтобы пользователи могли легко найти то, что нам нужно.

Если кто-то хочет узнать больше о какие новости В последней версии вы можете сделать это в информации, которую они предоставляют на веб-сайте.

Установите Wing 6 в Ubuntu 18.04

Разработка на Python с Wing

Мы можем установить эту IDE в нашу Ubuntu, перейдя в раздел загрузки с официального сайта для получить пакет .deb необходимо. В этой статье я собираюсь использовать опцию Personal.

После завершения загрузки мы можем использовать либо программную опцию Ubuntu, либо открыть терминал (Ctrl + Alt + T) и написать в нем:

Удалить Wing 6

Мы можем легко удалить эту IDE с нашего компьютера. Вам просто нужно открыть терминал (Ctrl + Alt + T) и написать в нем:

Документация по Wing tutorials

Мы сможем получить информацию о том, как работать с этой IDE в документация которые разработчики делают доступными для пользователей на своих веб-сайтах. Эту же справку можно найти с помощью меню справки, которое сопровождает программу.

Содержание статьи соответствует нашим принципам редакционная этика. Чтобы сообщить об ошибке, нажмите здесь.

Полный путь к статье: Убунлог » Ubuntu » Wing, среда разработки, предназначенная для Python

Wing Python IDE

Type less and let Wing worry about the details. Get immediate feedback by writing your Python code interactively in the live runtime. Easily navigate code and documentation.

Write Better Code

Avoid common errors and find problems early with assistance from Wing’s deep Python code analysis. Keep code clean with smart refactoring and code quality inspection.

Find Bugs Faster

Debug any Python code. Inspect debug data and try out bug fixes interactively without restarting your app. Work locally or on a remote host, VM, or container.

Wingware’s 23 years of Python IDE experience bring you a more Pythonic development environment. Wing was designed from the ground up for Python, written in Python, and is extensible with Python. So you can be more productive.

Intelligent Editor

Wing’s editor speeds up interactive Python development with context-appropriate auto-completion and documentation, inline error detection and code quality analysis, PEP 8 enforcement, invocation assistance, auto-editing, import management, refactoring, code folding, multi-selection, customizable code snippets, and much more. Wing can emulate vi, emacs, Eclipse, Visual Studio, XCode, and MATLAB.

Powerful Debugger

Wing’s debugger makes it easy to fix bugs and write new Python code interactively. Use conditional breakpoints to isolate a problem, then step through code, inspect data, try out bug fixes with the Debug Console’s command line, watch values, and debug recursively. You can debug multi-process and multi-threaded code launched from the IDE, hosted in a web framework, called from an embedded Python instance, or run on a remote host, VM, container, or cluster. Wing also provides an array and dataframe viewer for scientific and data analysis tasks.

Easy Code Navigation

Wing makes it easy to get around code with goto-definition, find uses, find symbol in project, editor symbol index, module and class browser, keyboard-driven search, and powerful multi-file search. Visit history is stored automatically, so you can instantly return to previously visited code. Or define and traverse categorized bookmarks that track automatically as code changes.

Project Management

Wing’s powerful project management capabilities work with Python environments managed by virtualenv, pipenv, conda, and Docker, with revision control using Git, Mercurial, Perforce, Subversion, or CVS. You can easily create new Python environments from Wing, add, remove, or update Python packages, and freeze your package configuration for use by other developers.

Integrated Unit Testing

Wing supports test-driven development with the unittest, doctest, nose, pytest, and Django testing frameworks. Failing tests are easy to diagnose and fix with Wing’s powerful debugger, and you can write new code interactively in the live runtime context set up by a unit test. Wing can track and display code coverage for your unit tests, so that you know how well your tests are exercising your code. Coverage data is also used to determine when edits to your code invalidate previously collected test results.

Remote Development

Wing’s quick-to-configure remote development support delivers all of Wing’s features seamlessly and securely to Python code running on a remote host, VM, container, or cluster. Remote development is possible to hosts running macOS and Linux, including those hosted by Docker, Docker Compose, AWS, Vagrant, WSL, Raspberry Pi, and LXC/LXD.

Customizable and Extensible

Wing offers hundreds of configuration options affecting editor emulation, display themes, syntax coloring, UI layout, and much more. Easily switch to and from dark mode, magnify the interface for presentations and meetings, and use perspectives to manage task-specific UI configurations. New IDE features can be added by writing Python code that calls down to Wing’s scripting API. You can even develop and debug your extension scripts with Wing.

And Much More

Other features include a difference/merge tool, code reformatting with Black, YAPF, and autopep8, indentation style conversion, and executing OS command lines. Wing runs on Windows, macOS, and Linux, and also supports remote development to Raspberry Pi and other ARM Linux devices.

Not all features are available in Wing Personal and Wing 101. Compare Products

Questions? Email us! We are dedicated to providing top-notch support.


Anthony Floyd

Engineering Lead at Convergent Manufacturing Technologies, Inc.

We are a specialized engineering company that writes desktop applications for engineers to perform process simulation and related data analysis. We have been using Wing Pro for the past decade with a small team of developers. We could not be happier with the product and the support!

The debugger and code navigation tools are some of the best features in Wing Pro. It is very easy to trace problems through complicated code. It is easy to jump to areas of code that you need to find. The editor is theme-able and many of our team work in ‘dark mode’.

The support is also great. Issues get responded to quickly and fixes pushed within days.


Ram Rachum

Python Consultant and Open Source Developer

I’ve been using Wing Pro as my main development environment for 10 years now. I’ve used it for my open-source projects, my client projects when I was working as a freelancer, and now at my work in a corporate environment. I do Python programming almost exclusively, so Wing’s Python-centric approach is a good fit for me.

The debugger is first-class. It works on multi-process, multi-thread programs and supports remote debugging. The editor is great. It’s got VI and emacs mode and it’s extensible with Python scripts. The support staff is great. I’ve made many suggestions and requests for improvement to them over the years, and they’ve implemented many of them. Bugs are fixed quickly.

Overall, I highly recommend Wing Pro!

Scientific and Data Analysis

Wing’s focus on interactive development works well for scientific and data analysis with Jupyter, NumPy, SciPy, Matplotlib, pandas, and other frameworks. The debugger’s dataframe and array viewer makes it easy to inspect large data sets.

Web Development

Wing supports development with Django, Flask, web2py, Pyramid, Google App Engine, and other web frameworks. The debugger can step through Django and web2py templates. Wing works seamlessly with code running on a remote host, virtual machine, or container hosted by Docker, WSL, Vagrant, AWS, or LXC/LXD.

Animation and Games

Since Wing’s debugger can run in embedded instances of Python, it can be used to develop scripts for Blender, Autodesk Maya, NUKE, Source Filmmaker and other modeling, rendering, and compositing applications that use Python. Wing also works with pygame and other Python-based game engines.

Desktop Apps and More

Wing can develop, test, and debug desktop applications with PyQt, wxPython, Tkinter, and other UI development frameworks. Scripting, Raspberry Pi, and other types of development are also supported.

New in Wing 9.1

Wing 9.1 adds auto-import and import management, collects and displays code coverage for unit tests, uses coverage data to invalidate test results when code is edited, adds support for Python 3.11, reduces debugger overhead in Python 3.7+, speeds up running unit tests, streamlines configuration of light and dark theming, adds two light display themes, and makes improvements to New Project for Docker and Django, auto-invocation, multi-threaded debugging, code analysis, & more.

Join our Happy Customers!

Wing Pro is used on every continent by Python developers like you. Find out why today!

Добавить комментарий

Ваш адрес email не будет опубликован. Обязательные поля помечены *