Re: GUibuilder evaluation

2010-09-06 Thread Denis Gomes
Hello, There are really three you can choose from if you are serious about making GUI applications. PyQt as already suggested. wxPython and pyGTK. Tkinter is good in my opinion if you are making smaller gui based programs. PyQt has an extensive number of additional features, including netwo

Re: python+sqlite3 in memory database

2010-08-30 Thread Denis Gomes
Peterson wrote: > Denis Gomes gmail.com> writes: > > > > > > > Hey Benjamin, > > > > Take a look at this website I found about cached and in-memory > databases. I > think the gist of the article is that caching is good if you are doing > SELECTs >

Re: python+sqlite3 in memory database

2010-08-30 Thread Denis Gomes
I am missing something? http://www.mcobject.com/in_memory_database Denis <http://www.mcobject.com/in_memory_database> On Mon, Aug 30, 2010 at 3:00 PM, Benjamin Peterson wrote: > Denis Gomes gmail.com> writes: > > > > > Eventually my goal is to dynamically load an

python+sqlite3 in memory database

2010-08-30 Thread Denis Gomes
Hi Everyone, I am using sqlite3 with python2.5 and the pysqlite wrapper. I am trying to copy tables from one database (in memory) to another database (file) using ATTACH. I looked on the internet and found a couple of sites that show how to do this but the table schema is not copied. def Save

Re: What is a class method?

2010-08-23 Thread Denis Gomes
John, I agree with you and I also think the definition given on the official python site is somewhat confusing, at least for an engineer like myself. But I'll take a stab at explaning it using what I know thus far. I think to understand what a class method is you have to first understand wha