Reputation: 64793
I am trying to automate a few things for my twitter account, Is it possible to follow the followers of a selected user via a python script ?
Upvotes: 0
Views: 1644
Reputation: 11215
Yes, it is possible, you even can rely on third party applications that can do this for you: http://pypi.python.org/pypi/twitter/1.6.1
The other solution is to rely on their API and make the correct HTTP calls there by yourself.
Upvotes: 1