Guest User

Untitled

a guest
Mar 30th, 2019
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. import mechanize
  2. import string
  3. import random
  4.  
  5. a = mechanize.Browser()
  6. a.set_handle_robots(False)
  7. a.addheaders = [("User-agent","Mozilla/5.0")]
  8. site_name = input("Enter the site name here:")
  9. gitbot = a.open(site_name)
  10. a.select_form(nr=2)
  11. user_name = input("Enter username:")
  12. user_name = a["user[login]"]
  13. email = input("enter email:")
  14. email = a["user[email]"]
  15. password = input("enter password here:")
  16. password = a["user[password]"]
  17. sign_up = a.submit()
Add Comment
Please, Sign In to add comment