I am using mechanize (http://wwwsearch.sourceforge.net/mechanize/) to login to www.coinotron.com, but the execution hangs when I do br.submit()
import mechanize
...
br = mechanize.Browser()
br.open("https://coinotron.com/app?action=logon")
form = br.select_form(nr=0)
br.form["name"] = "myusername"
br.form["password"] = "mypassword"
reponse = br.submit() # HERE THE EXECUTION HANGS!
If I comment the password line then the scripts executes ok, but of course it does not login.