MCPcopy Create free account
hub / github.com/Freedium-cfd/web / render_as_html

Method render_as_html

medium-parser/medium_parser/core.py:685–692  ·  view source on GitHub ↗
(self, post_id: str)

Source from the content-addressed store, hash-verified

683 return out_paragraphs, title, subtitle
684
685 async def render_as_html(self, post_id: str):
686 post_data = await self.query(post_id)
687 try:
688 result = await self._render_as_html(post_data, post_id)
689 except Exception as ex:
690 raise ex
691 else:
692 return result
693
694 async def generate_metadata(
695 self, post_data: dict, post_id: str, as_dict: bool = False

Callers 2

mainFunction · 0.95
render_medium_post_linkFunction · 0.80

Calls 2

queryMethod · 0.95
_render_as_htmlMethod · 0.95

Tested by 1

mainFunction · 0.76