x into all the boxes [ ] relevant to your issue (like so [x]).Paste the output of python -V here: 3.6.5
I am running the "multi_script_CLI.py" example and it doesn't seem that my parameters are being considered when I use the "follow_users_by_hashtag" method. It keeps giving me errors on about 80% of accounts saying that it is skipping. Also, I want to follow Business accounts. See the log below:
follower_count > bot.max_followers_to_follow, skipping!
Adding '1822361236' to `skipped.txt`.
Processed users: 48%|โโโโโโโโโโโโโโโโโโโโโโโโโ | 31/64 [05:36<05:57, 10.85s/it] ===> Going to follow `user_id`: 6623787497.
USER_NAME: rochaxtreme, FOLLOWER: 191, FOLLOWING: 783
info: is BUSINESS, skipping!
Adding '6623787497' to `skipped.txt`.
Processed users: 50%|โโโโโโโโโโโโโโโโโโโโโโโโโ | 32/64 [05:39<05:39, 10.61s/it] ===> Going to follow `user_id`: 3264570547.
USER_NAME: popaisnack, FOLLOWER: 9666, FOLLOWING: 1906
following_count / follower_count > bot.max_following_to_followers_ratio, skipping!
Adding '1695901315' to `skipped.txt`.
Processed users: 46%|โโโโโโโโโโโโโโโโโโโโโโโ | 24/52 [02:45<03:13, 6.91s/it] ===> Going to follow `user_id`: 1741231574.
USER_NAME: nurdascimaja, FOLLOWER: 626, FOLLOWING: 683
following_count > bot.max_following_to_follow, skipping!
Adding '47184803' to `skipped.txt`.
Processed users: 96%|โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ | 54/56 [08:44<00:19, 9.71s/it] ===> Going to follow `user_id`: 200743258.
USER_NAME: cherylmaas, FOLLOWER: 19951, FOLLOWING: 326
info: is VERIFIED, skipping !
Adding '200743258' to `skipped.txt`.
Processed users: 98%|โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ | 55/56 [08:51<00:09, 9.67s/it] ===> Going to follow `user_id`: 4091545253.
USER_NAME: mr_8pack, FOLLOWER: 226, FOLLOWING: 27
My parameters are set up as follows (there should be no way that any of the filters are hit based off my high numbers):
Current parameters
Max likes per day: 1000
Max unlikes per day: 1
Max follows per day: 500
Max unfollows per day: 1
Max comments per day: 1
Max likes to like: 9999999
Max followers to follow: 9999999
Min followers to follow: 0
Max following to follow: 10000
Min following to follow: 0
Max followers to following_ratio: 9999999
Max following to followers_ratio: 9999999
Min media_count to follow:0
Like delay: 1
Unlike delay: 1
Follow delay: 5
Unfollow delay: 5
Comment delay: 5
Proxy: None
So in summary, I'm basically looking to follow ALL accounts with certain hashtags, but 80% of the accounts get skipped either due to being Business account, not meeting parameters, or being verified.
Please help! Thanks
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Use "filter_users=False" in Bot section.
Example:
bot = Bot(filter_users=False, like_delay=180, max_likes_to_like=80)
Then you can have that error.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Most helpful comment
Use "filter_users=False" in Bot section.
Example:
bot = Bot(filter_users=False, like_delay=180, max_likes_to_like=80)Then you can have that error.