Make a graph network of your followers.
Neo4j is the most popular graph database according to DB-Engines ranking, and the 22ⁿᵈ most popular database overall.
$ docker-compose up
$ sudo pip install -r requirements.txt
$ export INSTAGRAM_NEO4J=''
$ export INSTAGRAM_USERNAME=''
$ export INSTAGRAM_PASSWORD=''
$ python spider.py # running with python 2
MATCH (a:Person {gender: 'female'})-[:FOLLOW]->(b:Person)
WITH a, count(b) as c
WHERE c > 2
RETURN a
MATCH (a:Person {gender: 'female'})-[:FOLLOW]->(b:Person)
WITH a, collect(b) as collection, count(b) as c
WHERE c > 2
RETURN a, collection
MATCH (me:Person {name: "aidenzibaei"}), (a:Person {gender: 'female'})-[:FOLLOW]->(b:Person)
MATCH path = allShortestPaths((me)-[*..6]-(a))
WITH a, count(b) as c, path
WHERE c > 3 RETURN a, path