├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── commented_post_links.txt ├── config_secrets.py ├── generator_comment.py ├── main.py └── requirements.txt /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: feder-cr 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | .venv 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feder-cr/reddit_karma_farmer_auto_commentator_with_AI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feder-cr/reddit_karma_farmer_auto_commentator_with_AI/HEAD/README.md -------------------------------------------------------------------------------- /commented_post_links.txt: -------------------------------------------------------------------------------- 1 | https://www.reddit.com/gallery/1f6hfnb 2 | -------------------------------------------------------------------------------- /config_secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feder-cr/reddit_karma_farmer_auto_commentator_with_AI/HEAD/config_secrets.py -------------------------------------------------------------------------------- /generator_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feder-cr/reddit_karma_farmer_auto_commentator_with_AI/HEAD/generator_comment.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feder-cr/reddit_karma_farmer_auto_commentator_with_AI/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feder-cr/reddit_karma_farmer_auto_commentator_with_AI/HEAD/requirements.txt --------------------------------------------------------------------------------