Skip to main content

pagination component

Project description


tags: [gradio-custom-component, SimpleTextbox, gradio pagination] title: gradio_pagination short_description: pagination component colorFrom: blue colorTo: yellow sdk: gradio pinned: false app_file: space.py

gradio_pagination

PyPI - Version

pagination component

Installation

pip install gradio_pagination

Usage

import json

import gradio as gr
from gradio_pagination import pagination

total=10000
current_page = 1
page_size = 10

def rerender_pagination_total(total_num):
    global total, page_size, current_page
    total = int(total_num)
    current_page = 1 # If the total number changes, whether to reset the current page to 1 depends on your business logic.
    print('overide total to ', total)
    return json.dumps({
        "total": int(total),
        "page": int(current_page),
        "page_size": int(page_size)
    })

def rerender_pagination_page(page):
    global total, page_size, current_page
    current_page = int(page)
    print('overide current_page to ', current_page)
    return json.dumps({
        "total": int(total),
        "page": int(current_page),
        "page_size": int(page_size)
    })

def rerender_pagination_size(size):
    global total, page_size, current_page
    page_size = int(size)
    print('overide page_size to ', page_size)
    return json.dumps({
        "total": int(total),
        "page": int(current_page),
        "page_size": int(page_size)
    })

def show_page_info_into_text_box(data):
    global total, page_size, current_page
    current_page = data.page
    page_size = data.page_size
    total = data.total
    print('pagination change: ', data)
    return str(current_page), str(page_size), str(total)

with gr.Blocks() as demo:
    gr.Markdown("## Pagination Demo")
    pagination_component = pagination(total=total, page=1, page_size=10)

    with gr.Row():
        page_display = gr.Textbox(label="Current Page", value=str(current_page), interactive=True)
        size_display = gr.Textbox(label="Page Size", value=str(page_size), interactive=True)
        total_display = gr.Textbox(label="Total", value=str(total), interactive=True)

    pagination_component.change(
        fn=show_page_info_into_text_box,
        inputs=pagination_component,
        outputs=[page_display, size_display, total_display]
    )
    page_display.change(fn=rerender_pagination_page, inputs=page_display, outputs=pagination_component)
    size_display.change(fn=rerender_pagination_size, inputs=size_display, outputs=pagination_component)
    total_display.change(fn=rerender_pagination_total, inputs=total_display, outputs=pagination_component)

if __name__ == "__main__":
    demo.launch()

pagination

Initialization

name type default description
value
str | Callable | None
None None
placeholder
str | None
None None
label
str | None
None None
every
Timer | float | None
None None
inputs
Component | Sequence[Component] | set[Component] | None
None None
show_label
bool | None
None None
scale
int | None
None None
min_width
int
160 None
interactive
bool | None
None None
visible
bool
True None
rtl
bool
False None
elem_id
str | None
None None
elem_classes
list[str] | str | None
None None
render
bool
True None
key
int | str | None
None None
total
int | None
0 None
page
int | None
1 None
page_size
int | None
10 None

Events

name description
change Triggered when the value of the pagination changes either because of user input (e.g. a user types in a textbox) OR because of a function update (e.g. an image receives a value from the output of an event trigger). See .input() for a listener that is only triggered by user input.

User function

The impact on the users predict function varies depending on whether the component is used as an input or output for an event (or both).

  • When used as an Input, the component only impacts the input signature of the user function.
  • When used as an output, the component only impacts the return signature of the user function.

The code snippet below is accurate in cases where the component is used as both an input and an output.

  • As output: Is passed, str | None: Returns a namespace object representing the pagination state.
def predict(
    value: str | None
) -> str | None:
    return value

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

gradio_pagination-0.0.2.tar.gz (58.5 kB view details)

Uploaded Source

Built Distribution

gradio_pagination-0.0.2-py3-none-any.whl (16.8 kB view details)

Uploaded Python 3

File details

Details for the file gradio_pagination-0.0.2.tar.gz.

File metadata

  • Download URL: gradio_pagination-0.0.2.tar.gz
  • Upload date:
  • Size: 58.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for gradio_pagination-0.0.2.tar.gz
Algorithm Hash digest
SHA256 6ac8bd08cb83e29757631394d099e7fdc3041ab40fb99705977728ae7e3addc6
MD5 83bda17d470db4d6ce51e7ae87ce3aaa
BLAKE2b-256 6df6fae767af5e80ad6b8030929f7f52ba68fe44ce3d9217160a40bc3345556c

See more details on using hashes here.

File details

Details for the file gradio_pagination-0.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for gradio_pagination-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 2be9e153da5f9449cae5ade20c2b27811e1c1ee87bb08a441366f69e75a1fa6e
MD5 3ec826c3f02129085ce05825ddcd5dec
BLAKE2b-256 5bd3f3ba3572e9a7f0b8ff56d1d6462685f30f0b65aee72cb34d6e6c4d63cd7e

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