MCPcopy Create free account
hub / github.com/EntilZha/PyFunctional / _repr_html_

Method _repr_html_

functional/pipeline.py:1717–1722  ·  view source on GitHub ↗

Allows IPython render HTML tables :return: First 10 rows of data as an HTML table

(self)

Source from the content-addressed store, hash-verified

1715 print(formatted_seq)
1716
1717 def _repr_html_(self):
1718 """
1719 Allows IPython render HTML tables
1720 :return: First 10 rows of data as an HTML table
1721 """
1722 return self.tabulate(10, tablefmt="html")
1723
1724 def tabulate(
1725 self,

Callers 1

test_tabulateMethod · 0.80

Calls 1

tabulateMethod · 0.95

Tested by 1

test_tabulateMethod · 0.64