Re: iPython help, Docstring [source file open failed]
On 15 Kwi, 03:27, alex23 wrote: > On Apr 15, 5:35 am, Przemyslaw Kaminski wrote: > > > You may want to try: > > import pydoc > > b = pydoc.render_doc(timedelta) > > print b > > Isn't this exactly the same output you get from typing 'help > (timedelta)' though? Well, from this: Lets say I want more information about timedelta right at the shell (as oppose lookup at Python Doc). I understood that Kegan wanted python documentation, as in help, but without the pager, right at the shell. Correct me if I'm wrong. -- http://mail.python.org/mailman/listinfo/python-list
Re: automated web with python?
OK, thanks, I'll give it a try, -- http://mail.python.org/mailman/listinfo/python-list
Re: automated web with python?
Ech... The problem is that mechanize doesn't support JavaScript, and these web forms are full of various JS functions... Maybe someone knows a way out of this? Doesn't have to be Python... -- http://mail.python.org/mailman/listinfo/python-list
Re: automated web with python?
OK, I found a solution -- Selenium, from http://selenium.org. I downloaded Selenium RC and this works fantastic! I'll get the job done by tomorrow ;) -- http://mail.python.org/mailman/listinfo/python-list