I am trying to get creation date of Twitter accounts from a csv file. I am not sure how would I go about it. I am still learning how to code so if someone can help me with this, it'll be a great help. Thank you in advance.
from twython import Twython
import pandas as pd
import requests
t = Twython(app_key='',
app_secret='',
oauth_token='',
oauth_token_secret='')
data = "file.xlsx"
handles = pd.read_excel(data, sheet_name=None)
comma_separated_string = ",".join(data)
output = t.lookup_user(screen_name=comma_separated_string)
username_list=[]
for user in output:
username_list.append(user['created_at'])
print username_list