Sending username password to a webpage

2008-11-20 Thread KDawg44
Hi,

Is there a way to essentially simulate populating a text box and
calling a submit button on a webpage?  I want to write an app that
gets a users information from a website and then uses that to get
information from another site.  The first site requires a log in.

Thanks for any advice that gets me in the right direction.

Thanks.

Kevin
--
http://mail.python.org/mailman/listinfo/python-list


Re: Sending username password to a webpage

2008-11-20 Thread Chris Rebert
On Thu, Nov 20, 2008 at 7:52 PM, KDawg44 [EMAIL PROTECTED] wrote:
 Hi,

 Is there a way to essentially simulate populating a text box and
 calling a submit button on a webpage?  I want to write an app that
 gets a users information from a website and then uses that to get
 information from another site.  The first site requires a log in.

There's the mechanize library for programmatic web browsing:
http://wwwsearch.sourceforge.net/mechanize/

Cheers,
Chris
-- 
Follow the path of the Iguana...
http://rebertia.com


 Thanks for any advice that gets me in the right direction.

 Thanks.

 Kevin
 --
 http://mail.python.org/mailman/listinfo/python-list

--
http://mail.python.org/mailman/listinfo/python-list


Re: Sending username password to a webpage

2008-11-20 Thread r0g
KDawg44 wrote:
 Hi,
 
 Is there a way to essentially simulate populating a text box and
 calling a submit button on a webpage?  I want to write an app that
 gets a users information from a website and then uses that to get
 information from another site.  The first site requires a log in.
 
 Thanks for any advice that gets me in the right direction.
 
 Thanks.
 
 Kevin

I dread to think why you want to do that but you probably need urllib or
urllib2.


You basically need to figure out if the webpage is using GET or POST to
send the form data and then URLencode and send your data as a request.

Most forms these days will use POST.

e.g. postvars = urlencode( { name:john, tel:2384792389 } )
 result = urllib.urlopen(http://www.example.com/form1,postvars)


Roger.
--
http://mail.python.org/mailman/listinfo/python-list