├── .github ├── ISSUE_TEMPLATE │ ├── dataset-request.md │ └── stat-request └── workflows │ └── python_starter.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── codepile ├── __init__.py ├── codepile.py ├── dataset.py ├── ghtorrent │ ├── get_github_repo.py │ └── gh_download.py └── stackexchange │ ├── __init__.py │ └── stackexchange.py ├── pyproject.toml └── tests └── test_test.py /.github/ISSUE_TEMPLATE/dataset-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarperAI/Code-Pile/HEAD/.github/ISSUE_TEMPLATE/dataset-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/stat-request: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarperAI/Code-Pile/HEAD/.github/ISSUE_TEMPLATE/stat-request -------------------------------------------------------------------------------- /.github/workflows/python_starter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarperAI/Code-Pile/HEAD/.github/workflows/python_starter.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarperAI/Code-Pile/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarperAI/Code-Pile/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarperAI/Code-Pile/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarperAI/Code-Pile/HEAD/README.md -------------------------------------------------------------------------------- /codepile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codepile/codepile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarperAI/Code-Pile/HEAD/codepile/codepile.py -------------------------------------------------------------------------------- /codepile/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarperAI/Code-Pile/HEAD/codepile/dataset.py -------------------------------------------------------------------------------- /codepile/ghtorrent/get_github_repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarperAI/Code-Pile/HEAD/codepile/ghtorrent/get_github_repo.py -------------------------------------------------------------------------------- /codepile/ghtorrent/gh_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarperAI/Code-Pile/HEAD/codepile/ghtorrent/gh_download.py -------------------------------------------------------------------------------- /codepile/stackexchange/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codepile/stackexchange/stackexchange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarperAI/Code-Pile/HEAD/codepile/stackexchange/stackexchange.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarperAI/Code-Pile/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/test_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarperAI/Code-Pile/HEAD/tests/test_test.py --------------------------------------------------------------------------------