├── LICENSE ├── README.md ├── answers └── .gitkeep ├── bot.py ├── helper.py ├── requirements.txt ├── settings.json └── setup.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmeySaini/Chegg-Answer-Bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmeySaini/Chegg-Answer-Bot/HEAD/README.md -------------------------------------------------------------------------------- /answers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmeySaini/Chegg-Answer-Bot/HEAD/bot.py -------------------------------------------------------------------------------- /helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmeySaini/Chegg-Answer-Bot/HEAD/helper.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | bs4 3 | pytelegrambotapi -------------------------------------------------------------------------------- /settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmeySaini/Chegg-Answer-Bot/HEAD/settings.json -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmmeySaini/Chegg-Answer-Bot/HEAD/setup.py --------------------------------------------------------------------------------