Re: [Pythonmac-SIG] Query Regarding IDE for python for GUI Apps

2013-02-19 Thread Vishal Ruhela
IDLE is nice but it does not offer too many features that allows you to work on and manage a big project. Thanks for your input. Regards, Vishal Ruhela -Sent from my Windows Phone From: Kevin Walzer Sent: 20-02-2013 08:00 To: pythonmac-sig@python.org Subject: Re

Re: [Pythonmac-SIG] Query Regarding IDE for python for GUI Apps

2013-02-19 Thread Aahz
On Wed, Feb 20, 2013, Vishal Ruhela wrote: > > I want to start App development in python for Windows and Mac OS > platforms, so please suggest me some IDE to work on. I have gone > through some like PyCharm. But, either they are expensive or it was > hard to configure on my machine. > > I have also

Re: [Pythonmac-SIG] Query Regarding IDE for python for GUI Apps

2013-02-19 Thread Kevin Walzer
On 2/19/13 9:07 PM, Vishal Ruhela wrote: I want to start App development in python for Windows and Mac OS platforms, so please suggest me some IDE to work on. I have gone through some like PyCharm. But, either they are expensive or it was hard to configure on my machine. I like IDLE myself. Sim

[Pythonmac-SIG] Query Regarding IDE for python for GUI Apps

2013-02-19 Thread Vishal Ruhela
I want to start App development in python for Windows and Mac OS platforms, so please suggest me some IDE to work on. I have gone through some like PyCharm. But, either they are expensive or it was hard to configure on my machine. I have also tried komodo edit but really not getting comfortabl

Re: [Pythonmac-SIG] py2app : strange behavior maybe relative to encoding

2013-02-19 Thread Pierre Ratinaud
Hi, I have put this in my code : env = os.environ.copy() if sys.platform == 'darwin' and 'LC_ALL' not in env: env['LC_ALL'] = 'en_US.UTF-8' and now I use Popen like this : Popen(mycommand, env = env) Maybe it's a little less suboptmal then changing user's environment :) But it's no