twitterscraper
twitterscraper copied to clipboard
blog of user doesn't always return value although there are value
comment below
example of user (https://twitter.com/DavidJHarrisJr) when I do the below command:
def main(): start = time.time() users = ['DavidJHarrisJr']
pool = Pool(1)
for user in pool.map(get_user_info,users):
twitter_user_info.append(user)
print(user)
return value {'user': 'DavidJHarrisJr', 'fullname': 'David J Harris Jr', 'location': 'Texas, USA', 'blog': 'davidharrisjr.store', 'date_joined': '1:34 PM - 11 Sep 2015', 'id': '3530404094', 'num_tweets': 17998, 'following': 2279, 'followers': 388688, 'likes': 13028, 'lists': 0}
@youssefsaqr what is the issue? It looks like you're getting the data from the user?
What command can I run to reproduce your problem?