Re: Newby Question for reading a file

2009-02-19 Thread Curt Hash
On Thu, Feb 19, 2009 at 12:07 PM, steven.oldner wrote: > > On Feb 19, 12:40 pm, Mike Driscoll wrote: > > On Feb 19, 12:32 pm, "steven.oldner" wrote: > > > > > Simple question but I haven't found an answer. I program in ABAP, and > > > in ABAP you define the data structure of the file and move t

Re: Searching Google?

2009-02-17 Thread Curt Hash
On Tue, Feb 17, 2009 at 4:15 PM, Oltmans wrote: > > Hey all, > > I want to search Google.com using a specific keyword and I just want > to read back the response using Pyhon. After some thorough Googling I > realized that I probably need a Search API key to do that. Is that > correct? Now, I don't

Re: Extract an image from a RTF file

2009-02-14 Thread Curt Hash
On Sat, Feb 14, 2009 at 11:01 AM, Terry Reedy wrote: > > bryan.fodn...@gmail.com wrote: >> >> I have a large amount of RTF files where the only thing in them is an >> image. I would like to extract them an save them as a png. >> Eventually, I would like to also grab some text that is on the image

Re: Fastest database solution

2009-02-06 Thread Curt Hash
On Fri, Feb 6, 2009 at 5:19 AM, M.-A. Lemburg wrote: > On 2009-02-06 09:10, Curt Hash wrote: >> I'm writing a small application for detecting source code plagiarism that >> currently relies on a database to store lines of code. >> >> The application has two primary

Re: Fastest database solution

2009-02-06 Thread Curt Hash
On Fri, Feb 6, 2009 at 2:12 AM, Roger Binns wrote: > > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Curt Hash wrote: > > I started out using sqlite3, but was not satisfied with the performance > > results. I then tried using psycopg2 with a local postgresql serv

Fastest database solution

2009-02-06 Thread Curt Hash
I'm writing a small application for detecting source code plagiarism that currently relies on a database to store lines of code. The application has two primary functions: adding a new file to the database and comparing a file to those that are already stored in the database. I started out using