Guest User

Untitled

a guest
Oct 5th, 2018
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. username = name.lower() + name_extra + '@gmail.com'
  2. password = ''.join(random.choice(chars) for i in range(8))
  3.  
  4. requests.post(url, allow_redirects=False, data={
  5. 'username': username,
  6. 'password': password
  7. })
  8.  
  9. print 'sending username %s and password %s' % (username, password)
Add Comment
Please, Sign In to add comment