feat(bible): added bible cog

This commit is contained in:
SeaswimmerTheFsh 2024-02-01 17:14:06 -05:00
parent 3398100a0f
commit 39fafede67
Signed by untrusted user: cswimr
GPG key ID: B8953EC01E5C4063
5 changed files with 62 additions and 0 deletions

22
bible/bible.py Normal file
View file

@ -0,0 +1,22 @@
# _____ _
# / ____| (_)
# | (___ ___ __ _ _____ ___ _ __ ___ _ __ ___ ___ _ __
# \___ \ / _ \/ _` / __\ \ /\ / / | '_ ` _ \| '_ ` _ \ / _ \ '__|
# ____) | __/ (_| \__ \\ V V /| | | | | | | | | | | | __/ |
# |_____/ \___|\__,_|___/ \_/\_/ |_|_| |_| |_|_| |_| |_|\___|_|
import logging
from redbot.core import commands
from redbot.core.bot import Red
class Bible(commands.Cog):
"""Retrieve Bible verses from the API.bible API."""
__author__ = "SeaswimmerTheFsh"
__version__ = "1.0.0"
def __init__(self, bot: Red):
super().__init__()
self.bot = bot
self.logger = logging.getLogger("red.sea.bible")