discord py get guild not in server code example
Example 1: discord py get all channels in guild
guild.text_channels
Example 2: discord py server.channels
# Returns a list of all channels from all guilds( as channel IDs )
bot.get_all_channels()
guild.text_channels
# Returns a list of all channels from all guilds( as channel IDs )
bot.get_all_channels()