Copy sample_config.py to config.py and add your consumer key, consumer secret, access key, and access secret
pip install tqdm, tweepy, geopy pip install 'dramatiq[rabbitmq, watch]'
you need rabbitmq running for message queing to work
Help menu
python main.py -h
Populate your follower database locally like below
python main.py --populate
Ideally you wont do this very often, maybe monthly once
Use the dm flag and additional filters to filter your users and direct message them To DM the top 10 followers who has the most no of followers
python main.py --dm
To DM the top 1000 followers who has the most no of followers
python main.py --dm --limit 1000
To DM all the users who are from US, active in the last 30 days and the top 100 users with the most no of followers
python main.py --dm --cc us --days 30 --limit 100
To DM all the users based on a search string use the --token flag
python main.py --dm --cc us --token bitcoin --limit 100