Ion Auto Login script in Python
Tuesday, September 16th, 2008i was just thinking about making the very famous IAL script of DJ in python and here is it and its damn simple import urllib, urllib2, time username = "Your username" password = "Your Password" interval = 10 data = {"loginID":username,"loginpassword":password,"flag":"0","popcheck":"0","submit":"Sign In"} value = urllib.urlencode(data) request = urllib2.Request("http://192.168.150.2:8080/clntAuth/clntAuth_main.jsp",value) print "Logging In\nMade by Ankur - http://ankurs.com" while (1): ...



