Metadata-Version: 2.1
Name: discord-ext-paginator
Version: 0.3.6
Summary: An package for discord pagination.
Home-page: UNKNOWN
Author: Alex Hutz
Author-email: frostiiflames@gmail.com
License: MIT
Keywords: discord.py,paginator
Platform: UNKNOWN
Requires-Python: >=3.7.1
Description-Content-Type: text/markdown
Requires-Dist: discord.py (>=1.5.1)

# discord-ext-paginator
<a href="https://pypi.org/project/discord-ext-paginator" traget="_blank">
    <img alt="PyPI - Version" src="https://img.shields.io/pypi/v/discord-ext-paginator">
</a>

<a href="https://pypi.org/project/discord-ext-paginator" traget="_blank">
	<img alt="PyPI - Downloads" src="https://pepy.tech/badge/discord-ext-paginator">
</a>

An package for discord pagination.

# How to install

```shell
pip install discord-ext-paginator
```

## Example
```python
from discord.ext import paginator

def get_pages():
	   pages = [discord.Embed(title=f"I'm the embed {i}!") for i in range(1, 6)]

@bot.command()
async def paginator(ctx):
	pag = paginator.Paginator(pages=get_pages())
	await pag.start(ctx)
```


