You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

discord-embeds-pagination

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

discord-embeds-pagination

Pagination for embeds in discord.py bots

0.0.7
pipPyPI
Maintainers
1

Discord Embeds Pagination

Python package to create pagination with embeds in discord.py bots.

Documentation

Import:

from pagination import Pagination

Example use:

@bot.command()
async def test_pagination(ctx):
    embeds = [
        discord.Embed(title="A", description="Desc", color=0x00ff00),
        discord.Embed(title="B", description="Desc", color=0x00ff00)
    ]
    pagination = Pagination(ctx, embeds)
    await pagination.init_messsage()

screenshot

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts