How can i achieve this functionality?
If i think about it, it can be done with adding current followers to set_dont_include and let InstaPy unfollow as much it can. It would be nice if the instagram-profilecrawler could return the followers list also without going through all my post for advanced statistics.
@emKaroly Well that's a hard and dirty get around 馃槃
will work though
In order to get around this, I went to my followers on Instagram on my computer and then pushed all of them into a comma delimited string.
I pushed this string into a file called followers.txt
and in my quickstart.py I read from that file. I can recreate this and post a solution or possibly try to create a script for this if enough people want it.
Edit: Actually it looks like we might linearly read from the python list of friends. I'm not sure about what sort of performance impact this might have for large enough friends list but maybe it could be worth exploring creating a dictionary instead of a list of friends?
I went to my followers on Instagram on my computer and then pushed all of them into a comma delimited string.
Can you explain how you went about this?
I'm also interested in this feature! I would like to unfollow users that are not following back after more than 24 hours.
Is there anyone who wants to contribute to a bounty to develop this feature quickly?
@emKaroly @deronsizemore @wesleyabbey @timgrossmann
I'm working on it, and need some help ( #707 )
this is my progress: https://github.com/converge/InstaPy/commit/c7897b9ddf376ecbf2ce6b5dd8df3530c8f5eba2
i try to get follower and following list by api that scroll down fetch, need some test: https://github.com/pleum/InstaPy/commit/883c36cdea73f7018a4b7d2e1febc3525e9a469a
Most helpful comment
In order to get around this, I went to my followers on Instagram on my computer and then pushed all of them into a comma delimited string.
I pushed this string into a file called
followers.txt
and in my quickstart.py I read from that file. I can recreate this and post a solution or possibly try to create a script for this if enough people want it.Edit: Actually it looks like we might linearly read from the python list of friends. I'm not sure about what sort of performance impact this might have for large enough friends list but maybe it could be worth exploring creating a dictionary instead of a list of friends?