It looks like you're new here. If you want to get involved, click one of these buttons!
#!/usr/bin/python
#Simple twitter client
#By chroniccommand
#Lets import the modules
import sys, twitter, string, os, time
username = \"pythontest1234\" #Username
password = \"your_password\" #Password
api = twitter.Api(username=username, password=password) #Declaring twitter API with usrname/passwrd
statuses = api.GetFriendsTimeline(username) # Grabs statuses
for s in statuses :
print s.user.name.encode(\"utf-8\"), \"(\", s.user.screen_name, \") :\" #Grabbing shit to print out in UTF-8
print s.text.encode(\"utf-8\")
status = 'Python test(yes another one x2)' #Our status update message
api.PostUpdate(status) #Post the message above ^^
time.sleep(5) #Sleep for 5 second
sys.exit()#And woot were done ^_^