├── .gitignore ├── Dockerfile ├── README.md ├── requirements.txt └── src └── main.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmhall/Petrosian-Bot/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmhall/Petrosian-Bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmhall/Petrosian-Bot/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | praw 2 | python-dotenv 3 | pickledb -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmhall/Petrosian-Bot/HEAD/src/main.py --------------------------------------------------------------------------------