本文整理匯總了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.")