pdftools_toolbox.pdf.page_list

Classes

PageList(handle)

class pdftools_toolbox.pdf.page_list.PageList(handle)[source]

Bases: _NativeObject, list

static copy(target_document: Document, page_list: PageList, options: PageCopyOptions | None) PageList[source]

Copy a page list

Copy pages from an input document to the given targetDocument. The returned list is associated with the given target document but not yet part of it. It can be appended to the document’s page list.

Parameters:
Returns:

the copied page list, associated with the target document.

Return type:

pdftools_toolbox.pdf.page_list.PageList

Raises:
clear() None[source]

Remove all items from list.

remove(index: int) None[source]

Remove first occurrence of value.

Raises ValueError if the value is not present.

extend(items: PageList) None[source]

Extend list by appending elements from the iterable.

insert(index: int, value: Any) None[source]

Insert object before index.

pop(index: int = -1) Any[source]

Remove and return item at index (default last).

Raises IndexError if list is empty or index is out of range.

sort(key=None, reverse=False) None[source]

Sort the list in ascending order and return None.

The sort is in-place (i.e. the list itself is modified) and stable (i.e. the order of two equal elements is maintained).

If a key function is given, apply it once to each list item and sort them, ascending or descending, according to their function values.

The reverse flag can be set to sort in descending order.

reverse() None[source]

Reverse IN PLACE.

append(value: Page) None[source]

Append object to the end of the list.

index(value: Page, start: int = 0, stop: int | None = None) int[source]

Return first index of value.

Raises ValueError if the value is not present.