When I was using github-flask to crawl all the fork list of one repo on multi-thread:
request('GET', 'repos/%s/forks' % project_name, True)
It wil be ban by github.

Is there any way I can avoid this if I use all_pages=True in
request(method, resource, all_pages=False, **kwargs) ?
My idea is that give user a option for not crawling so fast, like sleep(1) after each API call.
When I was using github-flask to crawl all the fork list of one repo on multi-thread:
request('GET', 'repos/%s/forks' % project_name, True)
It wil be ban by github.
Is there any way I can avoid this if I use all_pages=True in
request(method, resource, all_pages=False, **kwargs) ?
My idea is that give user a option for not crawling so fast, like sleep(1) after each API call.