TVGuide

2005-03-28 Thread Jerry Kassebaum
I would like to automate tvguide.com. I have read Spidering Hacks, but I'm stuck. Here is the form portion of their code that takes my e-mail address for the log-in: * form action=login.asp method=post id=frmLogin name=frmLogin tr td bgcolor=#EE valign=top align=left

RE: TVGuide

2005-03-28 Thread Thomas, Mark - BLS CTR
] On Behalf Of Jerry Kassebaum Sent: Monday, March 28, 2005 9:24 AM To: perl-win32-users@listserv.ActiveState.com Subject: TVGuide I would like to automate tvguide.com. I have read Spidering Hacks, but I'm stuck. Here is the form portion of their code that takes my e-mail address

Re: TVGuide

2005-03-28 Thread Johan Lindstrom
At 16:24 2005-03-28, Jerry Kassebaum wrote: use LWP; $browser=LWP::UserAgent-new; $url=http://tvguide.com/;; $response=$browser-post($url, ['name'='email', 'id'='email', 'value'='[EMAIL PROTECTED]',]); print$response; What you get back is a HTTP::Response object. Reading the docs for that class

RE: TVGuide

2005-03-28 Thread Thomas, Mark - BLS CTR
, such as TVGuide for Windows (http://tvguide.sourceforge.net/) and others written in Perl and other languages (check out the Related Projects section of http://membled.com/work/apps/xmltv/) Depending on your needs, your work may already be done! -- Mark. -Original Message- From: Jerry