├── .gitignore ├── .sample.env ├── CONTRIBUTE.md ├── LICENSE ├── README.md ├── bot.py ├── cogs ├── __init__.py ├── about.py ├── articles.py ├── challenges.py ├── games.py ├── images │ ├── bot-banner.jpg │ └── trellor-code-review.jpg ├── memes.py ├── projects.py ├── quotes.py ├── readme.py └── youtube.py ├── config.py ├── createfilesnddirectories.sh ├── data ├── motivational_quotes.json ├── never_have_i_ever.json ├── preferences.db ├── readme_template1.md ├── readme_template2.md ├── responses.json ├── truth_or_dare.json └── would_you_rather.json ├── requirements.txt ├── shaheen.png └── utils ├── __init__.py ├── meme_api.py ├── news_api.py ├── quotes_api.py └── youtube_api.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solomonchidera/shaheen/HEAD/.gitignore -------------------------------------------------------------------------------- /.sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solomonchidera/shaheen/HEAD/.sample.env -------------------------------------------------------------------------------- /CONTRIBUTE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solomonchidera/shaheen/HEAD/CONTRIBUTE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solomonchidera/shaheen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solomonchidera/shaheen/HEAD/README.md -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solomonchidera/shaheen/HEAD/bot.py -------------------------------------------------------------------------------- /cogs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cogs/about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solomonchidera/shaheen/HEAD/cogs/about.py -------------------------------------------------------------------------------- /cogs/articles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solomonchidera/shaheen/HEAD/cogs/articles.py -------------------------------------------------------------------------------- /cogs/challenges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solomonchidera/shaheen/HEAD/cogs/challenges.py -------------------------------------------------------------------------------- /cogs/games.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solomonchidera/shaheen/HEAD/cogs/games.py -------------------------------------------------------------------------------- /cogs/images/bot-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solomonchidera/shaheen/HEAD/cogs/images/bot-banner.jpg -------------------------------------------------------------------------------- /cogs/images/trellor-code-review.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solomonchidera/shaheen/HEAD/cogs/images/trellor-code-review.jpg -------------------------------------------------------------------------------- /cogs/memes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solomonchidera/shaheen/HEAD/cogs/memes.py -------------------------------------------------------------------------------- /cogs/projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solomonchidera/shaheen/HEAD/cogs/projects.py -------------------------------------------------------------------------------- /cogs/quotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solomonchidera/shaheen/HEAD/cogs/quotes.py -------------------------------------------------------------------------------- /cogs/readme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solomonchidera/shaheen/HEAD/cogs/readme.py -------------------------------------------------------------------------------- /cogs/youtube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solomonchidera/shaheen/HEAD/cogs/youtube.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solomonchidera/shaheen/HEAD/config.py -------------------------------------------------------------------------------- /createfilesnddirectories.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solomonchidera/shaheen/HEAD/createfilesnddirectories.sh -------------------------------------------------------------------------------- /data/motivational_quotes.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/never_have_i_ever.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solomonchidera/shaheen/HEAD/data/never_have_i_ever.json -------------------------------------------------------------------------------- /data/preferences.db: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/readme_template1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solomonchidera/shaheen/HEAD/data/readme_template1.md -------------------------------------------------------------------------------- /data/readme_template2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solomonchidera/shaheen/HEAD/data/readme_template2.md -------------------------------------------------------------------------------- /data/responses.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/truth_or_dare.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solomonchidera/shaheen/HEAD/data/truth_or_dare.json -------------------------------------------------------------------------------- /data/would_you_rather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solomonchidera/shaheen/HEAD/data/would_you_rather.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solomonchidera/shaheen/HEAD/requirements.txt -------------------------------------------------------------------------------- /shaheen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solomonchidera/shaheen/HEAD/shaheen.png -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/meme_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solomonchidera/shaheen/HEAD/utils/meme_api.py -------------------------------------------------------------------------------- /utils/news_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solomonchidera/shaheen/HEAD/utils/news_api.py -------------------------------------------------------------------------------- /utils/quotes_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solomonchidera/shaheen/HEAD/utils/quotes_api.py -------------------------------------------------------------------------------- /utils/youtube_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solomonchidera/shaheen/HEAD/utils/youtube_api.py --------------------------------------------------------------------------------