Skip to main content

Views for py-cord library

Project description

Py-cord_Views

Views for py-cord library

from pycordViews.pagination import Pagination
from pycordViews.menu import SelectMenu
import discord

intents = discord.Intents.all()
bot = discord.AutoShardedBot(intents=intents)

@bot.command(name="My command paginator", description="...")
async def pagination_command(ctx):
    """
    Create a command pagination
    """
    pages: Pagination = Pagination(timeout=None, disabled_on_timeout=False)
    
    pages.add_page(content="It's my first page !!", embed=None)# reset embed else he show the embed of the page after
    
    embed = discord.Embed(title="My embed title", description="..........")
    pages.add_page(content=None, embed=embed) # reset content else he show the content of the page before

    pages.add_page(content="My last page !", embed=None)# reset embed else he show the embed of the page before

    await pages.respond(ctx=ctx) # respond to the command
    await pages.send(send_to=ctx.author) # send the message to the command author
    
@bot.command(name="My command select")
async def select_command(ctx):
    """
    Create a command select
    """
    async def your_response(select, interaction):
        await interaction.response.send(f"You have selected {select.values[0]} !")
    
    my_selector = SelectMenu(timeout=None, disabled_on_timeout=False) # A basic selector menu
    my_menu = my_selector.add_string_select_menu(placeholder="Choice anything !") # add string_select UI
    
    my_menu.add_option(label="My first choice !", emoji="😊", default=True, description="It's the first choice !", value='first choice')
    my_menu.add_option(label="My second choice !", value='second choice')
    my_menu.set_callable(your_response)
    
    await my_selector.respond(ctx)
    
bot.run("Your token")

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

pycordviews-1.1.2.tar.gz (10.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

PycordViews-1.1.2-py3-none-any.whl (15.1 kB view details)

Uploaded Python 3

File details

Details for the file pycordviews-1.1.2.tar.gz.

File metadata

  • Download URL: pycordviews-1.1.2.tar.gz
  • Upload date:
  • Size: 10.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.4

File hashes

Hashes for pycordviews-1.1.2.tar.gz
Algorithm Hash digest
SHA256 cb65d5194cf19a9c59838e4a3515d544f18eebaa4c37b1915ec4da09f8ed93cc
MD5 b6e9eca0e5a85b81cc60e18e167d1154
BLAKE2b-256 7bf08874e798165b9364c5d7017373e3fb6240ebc8eb3ac344974bd44fcf82ab

See more details on using hashes here.

File details

Details for the file PycordViews-1.1.2-py3-none-any.whl.

File metadata

  • Download URL: PycordViews-1.1.2-py3-none-any.whl
  • Upload date:
  • Size: 15.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.4

File hashes

Hashes for PycordViews-1.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 b18736f939bd7013844eaba9b65969838725a41da6d4104955dd5e9111471168
MD5 23d80098095c7805ec01d49a4b0eda91
BLAKE2b-256 fca28b71102c911a2027d311d531e924fedfb9a7aab0970d1148bc30d19c9f9a

See more details on using hashes here.

Supported by

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