├── CODE_OF_CONDUCT.md ├── GitChef ├── GitChef.py └── requirements.txt ├── GitCode ├── GitCode.py ├── geckodriver.log └── requirements.txt ├── LICENSE └── README.md /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sabyasachi-Seal/GitCode/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /GitChef/GitChef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sabyasachi-Seal/GitCode/HEAD/GitChef/GitChef.py -------------------------------------------------------------------------------- /GitChef/requirements.txt: -------------------------------------------------------------------------------- 1 | bs4 2 | html5lib 3 | lxml 4 | requests -------------------------------------------------------------------------------- /GitCode/GitCode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sabyasachi-Seal/GitCode/HEAD/GitCode/GitCode.py -------------------------------------------------------------------------------- /GitCode/geckodriver.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GitCode/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sabyasachi-Seal/GitCode/HEAD/GitCode/requirements.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sabyasachi-Seal/GitCode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sabyasachi-Seal/GitCode/HEAD/README.md --------------------------------------------------------------------------------