How to get nodes only in first page

get_child_nodes gets all items in under the parent, is there a way get only items in a desired page?

@Mark030 As you may know MS Word documents are flow by their nature, so there is no “Page” concept. The document’s content is reflown into pages by the consumer applications on the fly. Moreover a node can span several pages after building document layout. So there is no way to get nodes of the particular page.
However, you can use Document.extract_pages method to extract a specific page/pages from the source document as a separate document.
Also, you can use LayoutCollector to check page index where the particular node starts or ends.