Re: what IDE is the best to write python?

2009-02-02 Thread Patrick Steiger
2009/2/2 Joe Riopel > I typically use vim/vi, because it's usually already installed on the > OS's I work with and vim for Windows works the same. Also, using the > same editor across these different OS's, I don't have to worry too > much soft/hard tabs. You shouldn't even think about hard tab

Re: New to python, open source Mac OS X IDE?

2009-01-28 Thread Patrick Steiger
I would recommend Netbeans with Python plugin, Eric4 and Komodo Edit, with descending order of preference 2009/1/27 joseph.a.mar...@gmail.com > Greetings! I've heard enough raving about Python, I'm going to see for > myself what all the praise is for! > > I'm on a Mac. I use Netbeans for Java, P

Re: Does Python really follow its philosophy of "Readability counts"?

2009-01-20 Thread Patrick Steiger
2009/1/20 Paul Rubin <"http://phr.cx"@nospam.invalid> > Luis Zarrabeitia writes: > > No wonder you can't get Bruno's point. For the second, static checks > > to prevent accidents, you have pylint. For the first, not only you > > are using the wrong tool, but you are barking at python for not > >

Re: Getting OSError, Could someone suggest?

2009-01-19 Thread Patrick Steiger
2009/1/19 Steven D'Aprano > On Mon, 19 Jan 2009 15:47:00 +0530, srinivasan srinivas wrote: > > > Hi, > > I have written a script which will spawn more than 200 no of > > subprocesses. I have used subprocess.Popen to do that. > > > > OSError: [Error 24] Too many open files. > > > > Could someon

Re: issue

2009-01-19 Thread Patrick Steiger
What kind of database do you need? Relational Databases? The three major databases you can work with python are SQLite, MySQL and PostgreSQL (favorite of mine.) SQLite already comes with python. Try: >>> import sqlite3 SQLite is... Lite. All the informations are stored in a single file. MySQL