Author Topic: Twitter Console Version 0.1 [Python]  (Read 1917 times)

0 Members and 1 Guest are viewing this topic.

Offline kiddies

  • NULL
  • Posts: 3
  • Cookies: 1
    • View Profile
Twitter Console Version 0.1 [Python]
« on: May 03, 2011, 08:37:24 pm »


this software made by kiddies. this tool can be update status in twitter via console and look friends and waht they status..

this version 0.1 twitter console.

your comment and critical can be sent to my email or give comment here
your comment will be make this tool perfectly

source:
Code: [Select]
#!/usr/bin/python

#This tool just for fun
#thanks : mywisdom, gunslinger_, flyff666, petimati, synlord(get your honey dude :p), jimmy, whitehat and you !
#special made : devilzc0de
#email : kecoak2004@yahoo.com
#blog : http://devilz-kiddies.blogsport.com and http://kiddiescode.wordpress.com
#forum thanks : devilzc0de, jasakom, antijasakom, void-labs, and all community
#special thanks: for my lovely(verawati), you always beside me when im sad, fall and happy

import twitter
import time

#twitter connect
print """
####################################################
#~|~ o_|__|_ _._ |~ _ ._ _ _ | _ /\ '| #
# | \/\/| | | }_| |_(_)| |_\(_)|}_ \/ \/o | #
# #
# twitter console version 0.1 #
# developed by kiddies A.k.A peneter #
####################################################
"""

user_name = raw_input("please insert your username or email : ")
pass_word = raw_input("please insert your password : ")
try:
connect = twitter.api(username = user_name, password = pass_word)
print "your twitter account was connected"
print "what do you wanna do ? "
print "[1]Update your wall"
print "[2]Look your frieds wall"
choose = raw_input("coose 1 or 2 : ")
if choose == "1":
wall = raw_input("input your wall message : ")
update = connect.PostUpdate(wall)
print "your twitter wall have been updated : %s " % wall
print "Thanks for using Twitter Console"
if choose == "2":
wall_look = connect.GetFriends()
for wall in wall_look:
look = wall.screen_name + wall.status.text
time.sleep(50)
print look
else:
print "[-]Back to Main Menu"


except ImportError:
print "Please check twitter module"
print "Please check your Connection"
print "Please check your username or password, may be those invalid"
« Last Edit: May 05, 2011, 05:20:02 pm by ande »

Offline Tsar

  • Peasant
  • *
  • Posts: 126
  • Cookies: 10
  • turing-recognizable
    • View Profile
Re: Twitter Console Version 0.1 [Python]
« Reply #1 on: May 26, 2011, 10:28:11 am »
Pretty cool kiddies, +1, I like to see stuff like this where people use API's of sites and stuff.

Just wondering does the twitter api come included with python or do you need to download it
« Last Edit: May 26, 2011, 10:46:33 pm by Tsar »

Offline 10n1z3d

  • Serf
  • *
  • Posts: 42
  • Cookies: 8
    • View Profile
Re: Twitter Console Version 0.1 [Python]
« Reply #2 on: June 13, 2011, 04:37:55 pm »
Just wondering does the twitter api come included with python or do you need to download it
Of course its a third-party module. If you are running Ubuntu just install the python-twitter package:

Code: [Select]
sudo apt-get install python-twitter
otherwise take a look here: http://code.google.com/p/python-twitter/.
Code: [Select]
python -c "print ''.join(chr(x) for x in [int(oct(39)) + 2, 24 * 2, 313 % 203, 0x31, (2 ** 7) - 6, int('051'), (3 << 6) - 92])"