MindMaster32 wrote:
>I am writing a script that has to read data from an ASCII file of
>about 50 Mb and do a lot of searches and calculations with that data.
>That would be a classic problem solved by the use of a database
>(SQLite would suit just fine), but that would require the user to
>install
MindMaster32 wrote:
> I am writing a script that has to read data from an ASCII file of
> about 50 Mb and do a lot of searches and calculations with that data.
> That would be a classic problem solved by the use of a database
> (SQLite would suit just fine), but that would require the user to
> ins
On 3 oct, 22:01, MindMaster32 <[EMAIL PROTECTED]> wrote:
Hi,
Maybe PyDbLite (http://quentel.pierre.free.fr/PyDbLite/index.html) is
what you need : a single Python module, compatible with Python 2.3+,
that lets you manipulate data in memory
You can manage a database like this :
import PyDbLite
d
Michael Bentley wrote:
>
> On Oct 3, 2007, at 1:01 PM, MindMaster32 wrote:
>
>> I am writing a script that has to read data from an ASCII file of
>> about 50 Mb and do a lot of searches and calculations with that data.
>> That would be a classic problem solved by the use of a database
>> (SQLite
On Oct 3, 2007, at 1:01 PM, MindMaster32 wrote:
> I am writing a script that has to read data from an ASCII file of
> about 50 Mb and do a lot of searches and calculations with that data.
> That would be a classic problem solved by the use of a database
> (SQLite would suit just fine), but that w
I am writing a script that has to read data from an ASCII file of
about 50 Mb and do a lot of searches and calculations with that data.
That would be a classic problem solved by the use of a database
(SQLite would suit just fine), but that would require the user to
install more packages other than