[BangPypers] Harvestman error

2010-05-30 Thread JAGANADH G
Dear All I was trying to run Harvestman(A Python tool for web harvesting). I got the following error http://pastebin.com/uPzUs0Xw My configuration file is http://pastebin.com/dfhiy2Q6 Can any body help me regarding this. I was trying to harvest my blog with a word filter 'Python' -- **

Re: [BangPypers] Harvestman error

2010-05-30 Thread Jeffrey Jose
Let me state at the outset that I have no idea what Harvestman is or what you're trying to acheieve. Looking at the stacktrace, I'll give you some pointers as to what I'd do if I had got this error. 1. File "/usr/lib/python2.6/site-packages/HarvestMan-2.0.4betadev_r253-py2.6.egg/harvestma

Re: [BangPypers] Harvestman error

2010-05-30 Thread Ramdas S
On Sun, May 30, 2010 at 10:23 PM, Jeffrey Jose wrote: > Let me state at the outset that I have no idea what Harvestman is or what > > FYI Author of Harvestman Anand Pillai is on this list. -- Ramdas S +91 9342 583 065 ___ BangPypers mailing list BangPy

Re: [BangPypers] Harvestman error

2010-05-30 Thread Jeffrey Jose
that's great. I'm sure he'll have better input. On Sun, May 30, 2010 at 10:27 PM, Ramdas S wrote: > On Sun, May 30, 2010 at 10:23 PM, Jeffrey Jose >wrote: > > > Let me state at the outset that I have no idea what Harvestman is or what > > > > > FYI Author of Harvestman Anand Pillai is on this l

[BangPypers] PYTHON ON NOKIA E71

2010-05-30 Thread Dipo Elegbede
Hi all, Pls does anyone know whether I can install python and code on my Nokia E71? I have full access to computer at my office but not at home. This is creating a serious break in my flow of study. With python on my phone,I can learn and code on the fly. Already,I read Alan Gauld's note from my ph

Re: [BangPypers] PYTHON ON NOKIA E71

2010-05-30 Thread steve
Hi Dipo, On 05/30/2010 11:47 PM, Dipo Elegbede wrote: Hi all, Pls does anyone know whether I can install python and code on my Nokia E71? I have full access to computer at my office but not at home. This is creating a serious break in my flow of study. With python on my phone,I can learn and code

[BangPypers] UI Designing

2010-05-30 Thread Gaurav Kalra
Hi. Can you please share what sort of UI Design tools the members on the list currently use for designing web applications ? -- With Thanks Gaurav Kalra gvka...@googlemail.com ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/mai

[BangPypers] Extracting zipfile

2010-05-30 Thread murugadoss
Hi, I am trying to extract a zipfile, using zipfile.extractall(). when i do so, i am getting an error as "AttributeError: 'module' object has no attribute 'extractall' " >>> zipfile.extractall("home/murugadoss/testfile.zip") Traceback (most recent call last): File "", line 1, in AttributeErro

Re: [BangPypers] Extracting zipfile

2010-05-30 Thread Roshan Mathews
On Mon, May 31, 2010 at 05:56, murugadoss wrote: zipfile.extractall("home/murugadoss/testfile.zip") > Traceback (most recent call last): >  File "", line 1, in > AttributeError: 'module' object has no attribute 'extractall' http://docs.python.org/library/zipfile.html#zipfile.ZipFile.extract

Re: [BangPypers] Extracting zipfile

2010-05-30 Thread Jeffrey Jose
Dear Murugadoss, If you're starting out Python, I highly recommend IPython ( http://ipython.scipy.org/moin/ ). With its excellent tab completion, you would never run into an "AttributeError" /jeff On Mon, May 31, 2010 at 7:30 AM, Roshan Mathews wrote: > On Mon, May 31, 2010 at 05:56, muruga

Re: [BangPypers] Extracting zipfile

2010-05-30 Thread Senthil Kumaran
On Mon, May 31, 2010 at 08:32:01AM +0530, Jeffrey Jose wrote: > Dear Murugadoss, > > If you're starting out Python, I highly recommend IPython ( > http://ipython.scipy.org/moin/ ). With its excellent tab completion, you > would never run into an "AttributeError" I doubt. We better recommend him

Re: [BangPypers] Extracting zipfile

2010-05-30 Thread Noufal Ibrahim
On Mon, May 31, 2010 at 8:32 AM, Jeffrey Jose wrote: > Dear Murugadoss, > > If you're starting out Python, I highly recommend IPython ( > http://ipython.scipy.org/moin/ ). With its excellent tab completion, you > would never run into an  "AttributeError" -1. Tab completion is there in the standar