Advertisement
Guest User

Untitled

a guest
Jul 30th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. import mechanize
  2. from bs4 import BeautifulSoup
  3. import urllib2
  4. import cookielib
  5.  
  6. cj = cookielib.CookieJar()
  7. br = mechanize.Browser()
  8. br.set_cookiejar(cj)
  9. br.open("https://pyckio.com/signin/")
  10.  
  11. for f in br.forms():
  12. print f
  13.  
  14. br.select_form(nr = 0)
  15. br.form['email'] = 'myemail'
  16. br.form['password'] = 'mypassword'
  17. br.submit()
  18.  
  19. print br.response().read()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement