You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 7, 2021. It is now read-only.
Gabor Szarnyas edited this page Mar 21, 2019
·
7 revisions
Currently, we only support crawling repositories from GitHub. If you want to write your own crawler, there is a class BaseCrawler in core/crawler/basecrawler.py, please use it as your base class. Then you just need to implement the functions that are marked as NotImplementedError in the base class.
There is a Github crawler in core/crawler/githubcrawler.py, you can read its code for more reference. It uses a lot of help functions defined in the directory core/utils, which may be useful to you.