Questions tagged [wing-ide]

Wing IDE is an integrated development environment for Python, made by Wingware and available both in free and paid editions.

When asking questions it helps to mention which edition (Pro, Personal, or 101), which Wing version, and which OS type/version you are using.

108 questions
7
votes
2 answers

PyDev Interactive Python Shell in Eclipse

I've been using Wing IDE for python programming and I am trying to switch to Eclipse, PyDev. When I run my code in Wing IDE, after finishing the execution the console goes right back to the interactive shell and I can continue on testing, but I…
Joohwan
  • 2,374
  • 1
  • 19
  • 30
5
votes
2 answers

How do you terminate the Python shell in Wing IDE?

I'm fairly new to Python and have been using Wing IDE to play around with the features. One of the things that I could find while looking around was how to force terminate the Python shell when executing a command that won't terminate any time soon.…
William Kong
  • 53
  • 1
  • 5
4
votes
3 answers

Failure import pygame in IDE on python 3.8.3

I have downloaded pygame: C:\>pip3 install pygame --user Requirement already satisfied: pygame in c:\users\mpenn\appdata\local\programs\python\python38-32\lib\site-packages (2.0.0.dev8) And I have python 3.8.3: C:\>py Python 3.8.3…
Owen Penn
  • 163
  • 9
4
votes
2 answers

Debugging Python bottle apps with WingIDE

I'm writing an Python Bottle application (Python 2.7.2 and Bottle 0.10.9) and developing it in the WingIDE (3.2.8-1) Professional for Linux. This all works well, except when I want to debug the Bottle application. I have it running in standalone…
writes_on
  • 1,735
  • 2
  • 22
  • 35
3
votes
2 answers

Setting up WingIDE to debug Flask projects

Has anyone had success setting up Flask project in WingIDE so that you can do breakpoint and use the debug probe on incoming requests?
Manto
  • 1,642
  • 1
  • 13
  • 28
3
votes
1 answer

WingIDE brace matching colours

Has anyone figured out a way to change the brace matching colours in WingIDE? I have managed to manually port my favourite colour scheme across from my text editor and the default green just doesn't do it for me. I've been unable to find…
Wayne Koorts
  • 10,861
  • 13
  • 46
  • 72
3
votes
1 answer

pdfkit not importing correctly in editors

I'm trying to make PDFs out of HTML files and URLs. I've found wkhtmltopdf to be just what I'm looking for, and the Python wrapper, pdfkit, seems great too. However, when I try to run the basic script: import…
Alex S
  • 4,726
  • 7
  • 39
  • 67
3
votes
1 answer

Python: wingIDE syntax highlighting customization

I'm using the free version of wingIDE. I am trying to customize individual syntax highlighting colors (comments, strings, constants, normal text, etc). I see the generic color changes for 'background,selected text", etc, but nothing that lets me get…
PPTim
  • 1,346
  • 6
  • 18
  • 33
3
votes
2 answers

Importing data from dbf to excel spreadsheet using Wing IDE

I am trying to move a column of data (mean values) from a dbf file to an excel spreadsheet. I have been trying this with Wing IDE with no success so far. I am not a progamming student and this is a short term assignment. I am stuck on the part where…
user1603825
  • 31
  • 1
  • 2
2
votes
1 answer

Comparison: Pycharm vs WingIDE

Which one do you prefer? Which features does one have that the other doesn't (in their latest versions, of course)? Both IDEs have trial versions at their respective websites: http://wingware.com/ http://www.jetbrains.com/pycharm/
Musaab
  • 1,574
  • 3
  • 18
  • 37
2
votes
1 answer

How can I run the full Flask Tutorial app in the Wingware IDE?

How can I run the full Flask Tutorial app in the Wingware IDE? I've been using Flask under Wing Pro 7.2 for some time, and can get control because I start Flask by doing app.run() in Wing. I conceived a wish to trace through the official working…
John White
  • 131
  • 1
  • 3
  • 19
2
votes
1 answer

Debug a Python script with sys.stdin in WingIDE

In command line, i run my script as follows: cat sample.log | python -B main.py logsource How do i debug the main.py and provide: sample.log as sys.stdin -B for python logsource as input parameter (sys.argv[1]) I'm using Python 3 if it matters.
XoXo
  • 1,560
  • 1
  • 16
  • 35
2
votes
1 answer

Wing ide "run" button is greyed out unless I save the file

Whenever I create a new wing file in the wing IDE interface, I find the "run code" (play symbol) button is greyed out and I can't click it unless I save the file somewhere on my computer. It didn't used to to this. This is annoying because it forces…
2
votes
1 answer

Wing IDE not stopping at break points

I am running a project that makes calls to C++ framework functions and python modules, I can run it on Wing IDE with no problems (personal version). However, I can not debug on the run. It only lets me debug a certain file, which is pretty useless.…
dusa
  • 840
  • 3
  • 14
  • 31
2
votes
1 answer

Switching to Python 3.6 in Wing101

I am running Windows 10 and have Python 3.6 installed in "C:\Program Files (x86)". I have Wing working when using Python 2.7, but when I try to switch to Python 3.6 (Edit > Configure Python) I get the following error message: Trying to import…
Sakeeb Hossain
  • 662
  • 5
  • 19
1
2 3 4 5 6 7 8