Best strategy for bulk usage? #797
emailsfrominstagram
started this conversation in
General
Replies: 1 comment 5 replies
-
yes it is the best
This is a completely different task, you will get not 10k users of a person, but 1k each from 10 different people |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm looking for the best way to retrieve data in bulk.
I noticed on the Telegram group someone said it's best to limit to 150-200 api requests per day.
It seems the
client.user_followers
will call user_followers_v1_chunk which will keep calling the api over and over until it gets all the needed users or an exception occurs.If I want to retrieve, say 10k followers, is the best way to just call
client.user_followers(username, amount=10000)
and hope I don't get banned? Or should I callclient.user_followers(username, amount=1000)
10 times across 10 different users? Or is there another, better way to handle bulk requests?Beta Was this translation helpful? Give feedback.
All reactions