Advertisement
Guest User

Untitled

a guest
Nov 17th, 2016
656
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. from walmart import *
  2.  
  3. slot_email = 'example@gmail.com'
  4. slot_pass = 'pass123'
  5. slot_prod = nes
  6. cc = '4333717831160493' # no spaces, dashes, or any other characters
  7. slot_checkout_values = {
  8. 'firstName': 'Python',
  9. 'lastName': 'Kicks',
  10. 'address': '123 Main Street',
  11. 'address2': '',
  12. 'city': 'Cookville',
  13. 'zip': '01234', # MAKE SURE TO SET THIS VALUE WITH THE APPROPRIATE VALUE
  14. 'stateInitials': 'CA',
  15. 'phone': '0123456789', # no spaces, dashes, or any other characters
  16. 'cc': cc,
  17. 'ccFirstName': 'Python',
  18. 'ccLastName': 'Kicks',
  19. 'ccMonth': '01', # always 2 digits
  20. 'ccYear': '2020', # always 4 digits
  21. 'ccv': '123' # MAKE SURE TO SET THIS VALUE WITH THE APPROPRIATE VALUE
  22. }
  23.  
  24. slot_proxy = 'IP:PORT' # for user and pass proxies use 'USER:PASS@IP:PORT'
  25.  
  26. slot_bot = WalmartBot(slot_email, slot_pass, slot_prod, slot_checkout_values, slot_proxy)
  27. slot_bot.start_bot()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement