On 2010-10-09, Johny <pyt...@hope.cz> wrote:
> Is it possible to control any webbrowser from Python ? For example to
> issue http POST and GET  command

The most reliable way to interact with a webserver is through the urllib
and httplib modules.  This is effective for 99% of cases.  I do understand
that some sites heavy in javascript can be difficult to figure out how to
make valid requests.  On win32 you can automate Internet Explorer through
its InternetExplorer.Application COM interface which is fully documented at
the MSDN site.  On other operating systems, Firefox can be accessed using
its XPCOM interface.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to