├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── codeql-analysis.yml │ └── python-publish.yml ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── _config.yml ├── hsc ├── __init__.py ├── __main__.py ├── constants.py ├── crawler.py ├── metadata.py └── progress_bar.py ├── requirements.txt ├── setup.py └── tests ├── test_crawler.py └── test_metadata.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nullifiers/Hackerrank-Solution-Crawler/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nullifiers/Hackerrank-Solution-Crawler/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nullifiers/Hackerrank-Solution-Crawler/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nullifiers/Hackerrank-Solution-Crawler/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nullifiers/Hackerrank-Solution-Crawler/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nullifiers/Hackerrank-Solution-Crawler/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nullifiers/Hackerrank-Solution-Crawler/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nullifiers/Hackerrank-Solution-Crawler/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nullifiers/Hackerrank-Solution-Crawler/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nullifiers/Hackerrank-Solution-Crawler/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nullifiers/Hackerrank-Solution-Crawler/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nullifiers/Hackerrank-Solution-Crawler/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nullifiers/Hackerrank-Solution-Crawler/HEAD/_config.yml -------------------------------------------------------------------------------- /hsc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nullifiers/Hackerrank-Solution-Crawler/HEAD/hsc/__init__.py -------------------------------------------------------------------------------- /hsc/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nullifiers/Hackerrank-Solution-Crawler/HEAD/hsc/__main__.py -------------------------------------------------------------------------------- /hsc/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nullifiers/Hackerrank-Solution-Crawler/HEAD/hsc/constants.py -------------------------------------------------------------------------------- /hsc/crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nullifiers/Hackerrank-Solution-Crawler/HEAD/hsc/crawler.py -------------------------------------------------------------------------------- /hsc/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nullifiers/Hackerrank-Solution-Crawler/HEAD/hsc/metadata.py -------------------------------------------------------------------------------- /hsc/progress_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nullifiers/Hackerrank-Solution-Crawler/HEAD/hsc/progress_bar.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.22.0 2 | ConfigArgParse==0.15.1 3 | progress==1.5 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nullifiers/Hackerrank-Solution-Crawler/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nullifiers/Hackerrank-Solution-Crawler/HEAD/tests/test_crawler.py -------------------------------------------------------------------------------- /tests/test_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nullifiers/Hackerrank-Solution-Crawler/HEAD/tests/test_metadata.py --------------------------------------------------------------------------------