madblackhatter1000
Power Member
- Oct 29, 2015
- 570
- 261
I'm trying to build an analytics social graph tool that shows who's connected to who.
I'm only going 2 levels deep - scraping the followers of followers.
Example: if Main account has 1000 followers, and each follower has 100-500 followers = 100,000-500,000 in total scraped list.
I made the python scraper that easily scraped the first level (1000 followers), but seems to be getting 1-5 minute temporary blocks and throttled with each additional Level 2 follower-of-a-follower. After 12-Hours, its still only scraped 50,000 of the total 100K-500K follower-of-a-follower.
Any way to make this go faster?
BTW, I'm a newbie Python Developer, so I'm pretty sure I made 100 mistakes in my code. I tested my script successfully a few times on small accounts with low followers with low followers (a total of 500 in all level 1 + level 2 combined).
I'm only going 2 levels deep - scraping the followers of followers.
Example: if Main account has 1000 followers, and each follower has 100-500 followers = 100,000-500,000 in total scraped list.
I made the python scraper that easily scraped the first level (1000 followers), but seems to be getting 1-5 minute temporary blocks and throttled with each additional Level 2 follower-of-a-follower. After 12-Hours, its still only scraped 50,000 of the total 100K-500K follower-of-a-follower.
Any way to make this go faster?
BTW, I'm a newbie Python Developer, so I'm pretty sure I made 100 mistakes in my code. I tested my script successfully a few times on small accounts with low followers with low followers (a total of 500 in all level 1 + level 2 combined).
Last edited: