├── .github └── FUNDING.yml ├── LICENSE ├── README.md ├── assets ├── stopwords-en.txt └── stopwords-es.txt ├── bot.py ├── config.py ├── requirements.txt ├── step1.py ├── step1_alt.py ├── step2.py ├── step2_alt.py └── step3.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomInsights/comments-generator/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomInsights/comments-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomInsights/comments-generator/HEAD/README.md -------------------------------------------------------------------------------- /assets/stopwords-en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomInsights/comments-generator/HEAD/assets/stopwords-en.txt -------------------------------------------------------------------------------- /assets/stopwords-es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomInsights/comments-generator/HEAD/assets/stopwords-es.txt -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomInsights/comments-generator/HEAD/bot.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomInsights/comments-generator/HEAD/config.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | praw 2 | requests 3 | -------------------------------------------------------------------------------- /step1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomInsights/comments-generator/HEAD/step1.py -------------------------------------------------------------------------------- /step1_alt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomInsights/comments-generator/HEAD/step1_alt.py -------------------------------------------------------------------------------- /step2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomInsights/comments-generator/HEAD/step2.py -------------------------------------------------------------------------------- /step2_alt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomInsights/comments-generator/HEAD/step2_alt.py -------------------------------------------------------------------------------- /step3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhantomInsights/comments-generator/HEAD/step3.py --------------------------------------------------------------------------------