Newbie Database.

Donnal Walter donnal at donnal.net
Mon May 27 21:41:29 EDT 2002


schitz0boy at hotmail.com (Corey Woodworth) wrote ...
> How should I save my database file for instance? I was thinking a text
> file full of strings like this perhaps:
> 
> songname::artist::performer::filename:: ... ...
> 

If you have some reason not to use the built-in pickle module or
shelve, you might consider formatting your database using XML (with or
without newlines):

<song>
  <name>
    Watermark
  </name>
  <artist>
    Enya
  </artist>
</song>

Donnal Walter
Arkansas Children's Hospital



More information about the Python-list mailing list