dpymenus
dpymenus copied to clipboard
Simplified menus for discord.py developers.
My data is getting split while using pagination i want to pile it up Like 4 in a row then next 4 account data like this? I tried to dm...
Discord added buttons to beta versions so I was wondering if development can get started for this as soon as possible since I’d love to be able to support my...
If I want to Reply to a message I need to pass Message object to `await context.send('some text', mention_author=False, reference=message)`, and to disable the ping, use `mention_author`. Currently this isn't...
```py async def load_all_pages(self, ctx, user : discord.User, userdict): menu = PaginatedMenu(ctx) pagelist = [] page1 = Page(title=str(user.display_name) + "'s inventory", color=0x00ff55) page1.add_field(name="Cats", value=len(userdict["cats"])) pagelist.append(page1) for i in userdict["cats"]: page...
I'm not sure if this is possible already, but it would be nice if I can send menus in DMs without cluttering DMs. I have an on_raw_reaction event where if...