lifanchu / TwitPy

đź•ŠTwitPy - Follow/Unfollow Automation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TwitPy

Quick and dirty follow/unfollow automation for Twitter.

MIT license built with Selenium built with Python3

Getting started

git clone https://github.com/timgrossmann/TwitPy.git
cd TwitPy
pip install .
# or depending on your system
python setup.py install

Make sure to get the right chromedrive for your system from here. Just put it in /assets.

Now edit the quickstart.py file to your needs.

API

from twitpy import TwitPy

# if you want to run it on a server simply set nogui=True

TwitPy(username="****", password="****",nogui=False) \
  .login() \
  # follows up to 250 accounts from your recommendations
  .follow_from_recom(amount=250) \ 
  # unfollows 100 accounts from your following list
  .unfollow_users(amount=100) \ 
  .end()

About

đź•ŠTwitPy - Follow/Unfollow Automation

License:MIT License


Languages

Language:Python 100.0%