I am trying to do something extremely simple in python yet somehow it's very difficult. All I want to do is write a python script that records the number of people a Twitter user is following, and the number of its followers. That's it.
Can anyone point me to a good package to do this? preferably not beautiful soup as that is overly complicated for what I want to do. I just want something like
[user: example_user, followers:9019, following:217]
The account I want to scrape is public. I have signed up for the API and I am little confused with it, but I do have the four codes I need for authorization.
Any help is appreciated.
Can anyone point me to a good package to do this? preferably not beautiful soup as that is overly complicated for what I want to do. I just want something like
[user: example_user, followers:9019, following:217]
The account I want to scrape is public. I have signed up for the API and I am little confused with it, but I do have the four codes I need for authorization.
Any help is appreciated.