Using Van Ling script on how to get a users url I adapted it and found two things I was looking for, one was to know the number of followers a certain screen name had so I used 'followers_count' instead of 'profile_image-url'
I also wanted more than the number of followers, I also wanted the day the account was created so I added a new details line 'created_at'
I also wanted more, I wanted this information for more than one account
This is where I need your help, I want details for more than one screen name
Below is the script I did and it works for one screen name so I hope you can make use of it, but When I ran it it only gave information on the followers and creation date for screen name No2
Thank you ..........................................
#!/home3/master/bin/python
import sys
sys.path.insert(1,'/home3/master/lib/python2.6/site-packages')
from twython import Twython
APP_KEY = 'appkey'
APP_SECRET = 'appsecret'
OAUTH_TOKEN = 'OToken'
OAUTH_TOKEN_SECRET = 'OTokenSecret'
twitter = Twython(APP_KEY, APP_SECRET, OAUTH_TOKEN, OAUTH_TOKEN_SECRET)
details = twitter.show_user(screen_name='No1')
details = twitter.show_user(screen_name='No2')
print "content-type: text/html;charset=utf-8"
print"<html><head></head><body>"
print (details['followers_count']) #No of followers
print (details['created_at'])# Account creation date