Re: Implementation of Book Organization tool (Python2.[x])

2009-11-29 Thread Aahz
In article <[email protected]>, Lie Ryan wrote: > >Python dictionary is stored in memory and closing the program == >deleting the database. You can pickle dictionary; and this might be >sufficient for quick and dirty, low-volume purpose. Pickled dictionary >is the least portable soluti

Re: Implementation of Book Organization tool (Python2.[x])

2009-11-23 Thread ~km
> Though many would disagree, I consider XML as a form of database though > it is only suitable for data exchange. XML is suitable for low- to > medium-volume purpose and when compatibility with various systems is > extremely important (nearly any OS and any programming language has XML > parsers;

Re: Implementation of Book Organization tool (Python2.[x])

2009-11-22 Thread Steve Howell
On Nov 22, 6:06 pm, "~km" wrote: > Hi together, > > I'm a python-proficient newbie and want to tackle a program with > Python 2.x, which basically organizes all my digital books (*.pdf, > *.chm, etc..) and to give them specific "labels", such as: > > "Author" -> string > "Read" -> boolean > "Last

Re: Implementation of Book Organization tool (Python2.[x])

2009-11-22 Thread Lie Ryan
~km wrote: Hi together, I'm a python-proficient newbie and want to tackle a program with Python 2.x, which basically organizes all my digital books (*.pdf, *.chm, etc..) and to give them specific "labels", such as: "Author" -> string "Read" -> boolean "Last Opened:" -> string and so on.. Now m

Implementation of Book Organization tool (Python2.[x])

2009-11-22 Thread ~km
Hi together, I'm a python-proficient newbie and want to tackle a program with Python 2.x, which basically organizes all my digital books (*.pdf, *.chm, etc..) and to give them specific "labels", such as: "Author" -> string "Read" -> boolean "Last Opened:" -> string and so on.. Now my question is