Hello, I need to fetch through all bot's cogs. bot.cogs returns
mappingproxy({'Help': <cogs.help.Help object at 0x7f2c9d0d7af0>, 'AFK': <cogs.afk.AFK object at 0x7f2c9d0d7d00>, 'Errors': <cogs.error_handler.Errors object at 0x7f2c9d0d4190>, 'Suggestions': <cogs.suggestions.Suggestions object at 0x7f2c9d04b0a0>, 'Moderation': <cogs.moderation.Moderation object at 0x7f2c9c6db1c0>, 'Utilities': <cogs.utilities.Utilities object at 0x7f2c9c6db220>, 'Events': <cogs.events.Events object at 0x7f2c9c6db010>, 'Fun': <cogs.fun.Fun object at 0x7f2c9c6dbdf0>, 'Tags': <cogs.tags.Tags object at 0x7f2c9c5cf8e0>, 'Goodbye': <cogs.goodbye.Goodbye object at 0x7f2c9c5ccd30>, 'Tickets': <cogs.tickets.Tickets object at 0x7f2c9c5cc880>, 'Welcome': <cogs.welcome.Welcome object at 0x7f2c9c5cc700>, 'Jishaku': <jishaku.cog.Jishaku object at 0x7f2c9d0d7400>, 'Miscellaneous': <cogs.miscellaneous.Miscellaneous object at 0x7f2c85100c40>, 'Starboard': <cogs.starboard.Starboard object at 0x7f2c85107fd0>})
``` but I have no idea how can I use this with `bot.get_cog()`.
Can someone help me?
(I need to get all commands from every cog, so that's why I have to fetch through all cogs)