API: main¶
main
¶
Bot
¶
Bases: ExtendedClient
Discord client with database, managers, handlers and i18n.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
logger
|
Logger
|
Root logger used to create component specific child loggers. |
required |
Attributes:
Name | Type | Description |
---|---|---|
session |
ClientSession
|
Shared aiohttp session for outbound HTTP requests. |
db |
MongoDBAsyncORM instance for persistence. |
|
detailed_help |
Optional mapping for extended help entries. |
|
setting_cache |
In‑memory cache for frequently accessed settings. |
|
ready |
Indicates whether the bot finished the first on_ready cycle. |
Source code in main.py
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 |
|
close()
async
¶
Gracefully close the bot, including HTTP sessions and database connections.
Source code in main.py
229 230 231 232 233 234 235 236 237 238 |
|
get_logger(name)
¶
Return a child logger derived from the bot's root logger.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
Name suffix for the child logger. |
required |
Returns:
Type | Description |
---|---|
Logger
|
A configured child logger. |
Source code in main.py
205 206 207 208 209 210 211 212 213 214 |
|
on_ready()
async
¶
Run one‑time tasks after the bot connects for the first time.
Sets presence, warms the language cache, refreshes translation data, and flips the internal ready flag.
Source code in main.py
216 217 218 219 220 221 222 223 224 225 226 227 |
|
setup_hook()
async
¶
Initialize external services and internal subsystems before the bot is ready.
This connects to MongoDB, prepares HTTP session, instantiates managers and handlers, registers default permission namespaces, loads modules, then offers slash command sync.
Source code in main.py
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 |
|
sync_slash_commands()
async
¶
Interactively synchronize slash commands.
Offers options to sync globally, to specific guilds, to the configured test guild, or to skip syncing. Consider a non‑interactive flag for headless deployments.
Source code in main.py
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 |
|
parse_args()
¶
Parse command line arguments.
Returns:
Type | Description |
---|---|
Parsed arguments including the debug flag used to control logging verbosity. |
Source code in main.py
28 29 30 31 32 33 34 35 36 |
|