Thanks I used the httplib module to establish and test a connection now the next step is to login supplying a username and password. Any examples of these available somewhere This is what i have so far import httplib, urllib conn = httplib.HTTPConnection("xxx.xx.xx.xxx") conn.request("GET", "/index.php") response = conn.getresponse() print response.status, response.reason data = response.read() conn.close()
-- http://mail.python.org/mailman/listinfo/python-list