本文整理汇总了Python中discord.AutoShardedClient方法的典型用法代码示例。如果您正苦于以下问题:Python discord.AutoShardedClient方法的具体用法?Python discord.AutoShardedClient怎么用?Python discord.AutoShardedClient使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类discord
的用法示例。
在下文中一共展示了discord.AutoShardedClient方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: import discord [as 别名]
# 或者: from discord import AutoShardedClient [as 别名]
def __init__(self, channel_name, bot_token, database):
"""
Initialize the bot using the Discord token and channel name to chat in.
:param channel_name: Only chats in this channel. No hashtag included.
:param bot_token: Full secret bot token
:param database: Path for sqlite file to use
"""
# Store configuration values
self.channel_name = channel_name
self.token = bot_token
self.database = database
self.message_count = 0
self.last_reset_time = datetime.now()
logging.info("[*] Setting up signal handlers")
signal(SIGINT, self.exit_handler)
signal(SIGTERM, self.exit_handler)
# Setup database
logging.info("[*] Initializing database...")
self.db = sqlite3.connect(self.database)
self.cursor = self.db.cursor()
self.setup_database_schema()
logging.info('[+] Database initialized')
# Load AIML kernel
logging.info("[*] Initializing AIML kernel...")
start_time = datetime.now()
self.aiml_kernel = aiml.Kernel()
self.setup_aiml()
end_time = datetime.now()
logging.info(f"[+] Done initializing AIML kernel. Took {end_time - start_time}")
# Set up Discord
logging.info("[*] Initializing Discord bot...")
self.discord_bot = discord.AutoShardedClient()
self.setup_discord_events()
logging.info("[+] Done initializing Discord bot.")
logging.info("[+] Exiting __init__ function.")