Re: Newby Question for reading a file

2009-02-19 Thread Curt Hash
On Thu, Feb 19, 2009 at 12:07 PM, steven.oldner steven.old...@gmail.com wrote: On Feb 19, 12:40 pm, Mike Driscoll kyoso...@gmail.com wrote: On Feb 19, 12:32 pm, steven.oldner steven.old...@gmail.com wrote: Simple question but I haven't found an answer. I program in ABAP, and in ABAP

Re: Searching Google?

2009-02-17 Thread Curt Hash
On Tue, Feb 17, 2009 at 4:15 PM, Oltmans rolf.oltm...@gmail.com 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

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 tjre...@udel.edu 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

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

Re: Fastest database solution

2009-02-06 Thread Curt Hash
On Fri, Feb 6, 2009 at 2:12 AM, Roger Binns rog...@rogerbinns.com 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 server

Re: Fastest database solution

2009-02-06 Thread Curt Hash
On Fri, Feb 6, 2009 at 5:19 AM, M.-A. Lemburg m...@egenix.com 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 functions: adding a new