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
> 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;
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
~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
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