MCPcopy
hub / github.com/getpelican/pelican / get_content

Method get_content

pelican/contents.py:423–428  ·  view source on GitHub ↗
(self, siteurl: str)

Source from the content-addressed store, hash-verified

421
422 @memoized
423 def get_content(self, siteurl: str) -> str:
424 if hasattr(self, "_get_content"):
425 content = self._get_content()
426 else:
427 content = self._content
428 return self._update_content(content, siteurl)
429
430 @property
431 def content(self) -> str:

Calls 1

_update_contentMethod · 0.95