MCPcopy Create free account
hub / github.com/VectifyAI/PageIndex / get_page_content

Method get_page_content

pageindex/client.py:230–234  ·  view source on GitHub ↗

Return page content for the given pages string (e.g. '5-7', '3,8', '12').

(self, doc_id: str, pages: str)

Source from the content-addressed store, hash-verified

228 return get_document_structure(self.documents, doc_id)
229
230 def get_page_content(self, doc_id: str, pages: str) -> str:
231 """Return page content for the given pages string (e.g. '5-7', '3,8', '12')."""
232 if self.workspace:
233 self._ensure_doc_loaded(doc_id)
234 return get_page_content(self.documents, doc_id, pages)

Callers 1

get_page_contentFunction · 0.80

Calls 2

_ensure_doc_loadedMethod · 0.95
get_page_contentFunction · 0.70

Tested by

no test coverage detected