I was working at creating a simple program that would read the content of a playlist file( in this case *.k3b") and write it out . the compressed "*.k3b" file has two file and the one I was trying to read was maindata.xml . I cannot however seem to use the gzip module correctly. Have tried the program 2 ways for no success, any ideas would be appreciated.
Attempt 1 #!/usr/bin/python import os import gzip playlist_file = open('/home/flebber/oddalt.k3b') class GzipFile([playlist_file[decompress[9, 'rb']]]); os.system(open("/home/flebber/tmp/maindata.xml")); for line in maindata.xml: print line playlist_file.close() Attempt 2 - largely just trying to get gzip to work #!/usr/bin/python import gzip fileObj = Gzipfile("/home/flebber/oddalt.k3b", 'rb'); fileContent = fileObj.read() for line in filecontent: print line fileObj.close() -- http://mail.python.org/mailman/listinfo/python-list