Re: Python language problem
May be you are looking for weakref module: http://www.python.org/doc/current/lib/module-weakref.html -- Baiju M -- http://mail.python.org/mailman/listinfo/python-list
Re: convert .pdf files to .txt files
o text from Python use system call. For example: import os os.system("pdftotext -layout my_pdf_file.pdf") This will create 'my_pdf_file.txt' file. Regards, Baiju M -- http://mail.python.org/mailman/listinfo/python-list