¡@

Home 

python Programming Glossary: br.form

Mechanize not showing FB messages form

http://stackoverflow.com/questions/17768460/mechanize-not-showing-fb-messages-form

br.open http facebook.com login.php br.select_form nr 0 br.form 'email' raw_input Email please br.form 'pass' raw_input Password.. br.select_form nr 0 br.form 'email' raw_input Email please br.form 'pass' raw_input Password please br.submit if Logout in br.response.. messages someone br.open link_to_spam for f in br.forms print f So this code isn't showing the messages form in facebook.And..

Use mechanize to log into megaupload

http://stackoverflow.com/questions/4422389/use-mechanize-to-log-into-megaupload

zero form br.select_form 'loginfrm' #User credentials br.form 'username' 'USERNAMEGOESHERE' br.form 'password' 'PASSWORDGOESHERE'.. #User credentials br.form 'username' 'USERNAMEGOESHERE' br.form 'password' 'PASSWORDGOESHERE' br.submit #prints out the current..

Using Python and Mechanize to submit form data and authenticate

http://stackoverflow.com/questions/4720470/using-python-and-mechanize-to-submit-form-data-and-authenticate

index one form br.select_form nr 1 # User credentials br.form 'user' 'DUMMYUSERNAME' br.form 'passwd' 'DUMMYPASSWORD' # Login.. nr 1 # User credentials br.form 'user' 'DUMMYUSERNAME' br.form 'passwd' 'DUMMYPASSWORD' # Login br.submit #Open up comment.. nr 7 #Change 'text' value to a testing string br.form 'text' this is an automated test #Submit the information br.submit..