Skip to main content

Easily create pagination for your embeds.

Project description

discord.py-pagination

discord.py-pagination is a Python library to easily create embed paginators.

WARNING IMAGE NOT FOUND

Installation

Use the package manager pip to install the library.

pip install discord.py-pagination

Usage

Quickstart

import Paginator

# Create a list of embeds to paginate.
embeds = [discord.Embed(title="First embed"),
          discord.Embed(title="Second embed"),
          discord.Embed(title="Third embed")]

... # Inside a command.
await Paginator.Simple().start(ctx, pages=embeds)

Advanced

To use custom buttons, pass in the corresponding argument when you initiate the paginator.
# These arguments override the default ones.

PreviousButton = discord.ui.Button(...)
NextButton = discord.ui.Button(...)
PageCounterStyle = discord.ButtonStyle(...) # Only accepts ButtonStyle instead of Button
InitialPage = 0 # Page to start the paginator on.
timeout = 42069 # Seconds to timeout. Default is 60

await Paginator.Simple(
    PreviousButton=PreviousButton,
    NextButton=NextButton,
    PageCounterStyle=PageCounterStyle,
    InitialPage=InitialPage,
    timeout=timeout).start(ctx, pages=embeds)

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

discord.py-pagination-0.0.5.tar.gz (3.8 kB view details)

Uploaded Source

Built Distribution

discord.py_pagination-0.0.5-py3-none-any.whl (4.1 kB view details)

Uploaded Python 3

File details

Details for the file discord.py-pagination-0.0.5.tar.gz.

File metadata

  • Download URL: discord.py-pagination-0.0.5.tar.gz
  • Upload date:
  • Size: 3.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.12

File hashes

Hashes for discord.py-pagination-0.0.5.tar.gz
Algorithm Hash digest
SHA256 94db6f36f9663d37b8bd721aa98984c4207b0cf49211cdea2751300bfd2ad252
MD5 dcacc921817895b99be585de80cdeff3
BLAKE2b-256 187c57786561631da3ae9d1a7b84abacba198e47010b14d89ca029b0b12fb27d

See more details on using hashes here.

File details

Details for the file discord.py_pagination-0.0.5-py3-none-any.whl.

File metadata

File hashes

Hashes for discord.py_pagination-0.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 da28b8ecb0827eb991da701e0223f2cd9e0c12de0c0a0913f621430289b4bd1b
MD5 d22b68bf1901661cc03b4b29c3113bcd
BLAKE2b-256 e21fb71bd07c1ba9d2d714d80640fe93eae530441038c8670f6cb1a917dc9bb9

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page