Re: Python language problem

2006-06-07 Thread baiju
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

2006-06-10 Thread Baiju M
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