Advertisement
Guest User

URGE

a guest
Sep 16th, 2011
2,410
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.96 KB | None | 0 0
  1. #!/usr/bin/python
  2.  
  3. # ____ ___  __________    ________    ___________  
  4. #|    |   \ \______   \  /  _____/    \_   _____/  
  5. #|    |   /  |       _/ /   \  ___     |    __)_    
  6. #|    |  /   |    |   \ \    \_\  \    |        \  
  7. #|______/   /\____|_  / /\______  / /\/_______  / /\
  8. #           \/      \/  \/      \/  \/        \/  \/
  9. #           Twitter #HASHTAG Take0ver Tool
  10.  
  11. # Dependencies
  12. #
  13. #
  14. #
  15. # Twitter Python Module
  16. # http://code.google.com/p/python-twitter/
  17. #
  18. # >Python 2.5
  19. # http://www.python.org/getit/
  20.  
  21. try :
  22.         import twitter
  23. except ImportError:
  24.         import os
  25.         print("you fucking need TWITTER module!")
  26.         os.system("firefox http://code.google.com/p/python-twitter/")
  27.         os.system("start http://code.google.com/p/python-twitter/")
  28.         print("http://code.google.com/p/python-twitter/ for help")
  29.  
  30.  
  31. userna = raw_input("Your fucking login nick: ")
  32. passwd = raw_input("Your twitter password: ")
  33. try:
  34.         api = twitter.Api(username=userna, password=passwd)#ERROR HERE FUCKKKKKK
  35. except twitter.TwitterError:
  36.         print("FUCKING DAMN IT YOU FUCKING NEED TO REINSTALL TWITTER MODULE OR OTHER PYTHON VERSION!!!\nat http://www.python.org/getit/ and\nhttp://code.google.com/p/python-twitter/ ")
  37.        
  38. spammessage = raw_input("What is the spam message?: ")
  39. count = raw_input("How many spam messages ?: ")
  40. fuck = 0
  41. c = 0
  42. while count >= fuck:
  43.         count = count - 1
  44.         status = api.PostUpdate(spammessage+"DICK IS DELICIOUS!! #JustionBieber #sexyFUN #Anonplus")
  45.         status
  46.         c = c + 1
  47.         print "spammed" +c+" messages"
  48. print("you have been banned from twitter! <3")
  49. a = raw_input("Click ENTER to be banned for 1024124535 hours").upper()
  50. if a in 'ANAL':
  51.         print 'its a good think me too <3'
  52.         exit()
  53. while 1:
  54.         count = count - 1
  55.         status = api.PostUpdate(spammessage+"I DONT LIKE ANAL D: yummy sperm for diner ! hummm #sperm #anal #dick")
  56.         status
  57. exit()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement