├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── assets └── search.gif ├── data ├── create_index.py ├── index.bin └── repositories.txt ├── evaluate.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RepoAnalysis/RepoSnipy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RepoAnalysis/RepoSnipy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RepoAnalysis/RepoSnipy/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RepoAnalysis/RepoSnipy/HEAD/app.py -------------------------------------------------------------------------------- /assets/search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RepoAnalysis/RepoSnipy/HEAD/assets/search.gif -------------------------------------------------------------------------------- /data/create_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RepoAnalysis/RepoSnipy/HEAD/data/create_index.py -------------------------------------------------------------------------------- /data/index.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RepoAnalysis/RepoSnipy/HEAD/data/index.bin -------------------------------------------------------------------------------- /data/repositories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RepoAnalysis/RepoSnipy/HEAD/data/repositories.txt -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RepoAnalysis/RepoSnipy/HEAD/evaluate.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RepoAnalysis/RepoSnipy/HEAD/requirements.txt --------------------------------------------------------------------------------