gitextract_wcx03rw_/ ├── .circleci/ │ └── config.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── Pipfile ├── README.md ├── deps/ │ └── windows/ │ ├── PyStemmer-2.0.1-cp39-cp39-win_amd64.whl │ └── windows.ps1 ├── docs/ │ ├── 1-getting-started.md │ ├── 2-linux-macos.md │ ├── 3-windows.md │ └── 4-docker-guide.md ├── run_linux.sh ├── run_windows.bat └── src/ ├── __init__.py ├── apis/ │ ├── __init__.py │ ├── pushshift.py │ └── reddit.py ├── bot.py ├── bots/ │ └── reddit/ │ ├── __init__.py │ ├── actions/ │ │ ├── cleanup_actions.py │ │ ├── comments/ │ │ │ ├── comment_actions.py │ │ │ └── sources/ │ │ │ └── cobe.py │ │ ├── post_actions.py │ │ └── utils.py │ ├── bot.py │ └── utils.py ├── config/ │ ├── cobe_config.py │ ├── common_config.py │ ├── config_menu.py │ ├── reddit/ │ │ ├── config_gen.py │ │ ├── reddit_avoid_subs.txt │ │ ├── reddit_avoid_words.txt │ │ └── reddit_sub_lists.py │ ├── reddit_config.py │ └── test.yml ├── init.py ├── libs/ │ └── urwide.py ├── logs/ │ ├── log_utils.py │ └── logger.py ├── menu.py ├── tests/ │ ├── __init__.py │ └── test_utils.py └── utils.py