quick install:
pip install -r requirements.txt
- update docs in usage.md
- create documentation for code
- create tests
Inspirational-Quotes-Bot/
├── requirements.txt # Lists Python dependencies
├── setup.py # Setup for Python dependencies
├── Background-Images/ # Folder for background images
│ └── ...
├── quotes/ # Folder for inspirational quotes
│ ├── inspirational_from_quotable.json # File of quotes
│ ├── populate_quotes.py # Fetches quotes from JSON file
│ └── ... (one file per source)
├── src/
│ ├── __init__.py
│ ├── bot.py # Script for Discord bot
| ├── config.py # Set password for Discord bot
│ └── image_gen.py # Main script for the inspirational quotes
├── docs/
│ └── usage.md # Documentation for using the bot (to write)
├── tests/
│ └── test_sample.py # Test sample
├── fonts/
│ └── JetBrainsMonoNerdFont-Medium.ttf # Font for quotes
├── outputs/ # Sample output
│ └── Output.png # Image of sample output
└── web/ # Code for the web version (to implement)