Skip to content

Instantly share code, notes, and snippets.

@erayarslan
Created July 17, 2014 10:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erayarslan/4bdc3863b68db1e69d37 to your computer and use it in GitHub Desktop.
Save erayarslan/4bdc3863b68db1e69d37 to your computer and use it in GitHub Desktop.
mechanize Form Post
import mechanize
browser = mechanize.Browser()
browser.set_handle_robots(False)
browser.open('http://www.erayarslan.com/notmine')
browser.select_form(nr=0)
browser.form['message'] = 'ohhh luuu'
browser.submit()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment