Re: [BangPypers] Help in reading the pdf file

2009-04-03 Thread Anand Balachandran Pillai
On Fri, Apr 3, 2009 at 8:20 PM, Sridhar Ratnakumar wrote: > On 3/26/09 3:29 PM, M Kumar wrote: > >> I need to read one pdf file and extract data from it. Is there any one can >> guide me >> > pyPdf? > > http://pybrary.net/pyPdf/ To give my $0.02, I had an opportunity to use both pyPdf and PDFMi

Re: [BangPypers] Help in reading the pdf file

2009-04-03 Thread Sridhar Ratnakumar
On 3/26/09 3:29 PM, M Kumar wrote: I need to read one pdf file and extract data from it. Is there any one can guide me pyPdf? http://pybrary.net/pyPdf/ There is also reportlab toolkit http://www.reportlab.org/rl_toolkit.html ___ BangPypers mail

Re: [BangPypers] Help in reading the pdf file

2009-04-03 Thread Nagraj Rao
Just in case if you're still searching, I'm using PDFMiner and found it good. You might have to slightly tweak it according to your requirements though. Maneesh Kumar B wrote: > > Hi, > > I am maneesh, I need to read one pdf file and extract data from it. Is > there > any one can guide me, > t

Re: [BangPypers] Help in reading the pdf file

2009-03-27 Thread Sahasranaman MS
On Fri, Mar 27, 2009 at 3:59 AM, M Kumar wrote: > I need to read one pdf file and extract data from it. Is there any one can > guide me, > There is a library called pdfplayground for python. I've never tried it, but it might help http://sourceforge.net/projects/pdfplayground/ Sahas __

Re: [BangPypers] Help in reading the pdf file

2009-03-27 Thread Ruchir Shukla
previous was not good sorry. i have used this to to read pdf file import popen2 from StringIO import StringIO class InputStreamReader(object): def __init__(self, inputStream, encoding): super(InputStreamReader, self).__init__() self.inputStream = inputStream

Re: [BangPypers] Help in reading the pdf file

2009-03-27 Thread Ruchir Shukla
i have used this to to read pdf file import popen2 from StringIO import StringIO class InputStreamReader(object): def __init__(self, inputStream, encoding): super(InputStreamReader, self).__init__() self.inputStream = inputStream self.encoding = encoding or 'utf-8'

Re: [BangPypers] Help in reading the pdf file

2009-03-26 Thread Senthil Kumaran
On Thu, Mar 26, 2009 at 6:29 PM, M Kumar wrote: > > Hi, > > I am maneesh, I need to read one pdf file and extract data from it. Is there > any one can guide me, > thanks in advance > Hi Maneesh, Doing it in Python way is not going to be easy. Just follow the discussion here: http://mail.python

[BangPypers] Help in reading the pdf file

2009-03-26 Thread M Kumar
Hi, I am maneesh, I need to read one pdf file and extract data from it. Is there any one can guide me, thanks in advance with regards, Maneesh KB ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangpypers