pandas-sphinx

Render a pandas DataFrame as an opinionated table for Sphinx.

A pandas DataFrame like…

item

qty

0

spam

42

1

eggs

451

2

bacon

0

… is converted to…

+--------+-------+
| item   |   qty |
+========+=======+
| spam   |    42 |
+--------+-------+
| …      | …     |
+--------+-------+

… and in the documentation, it looks like this:

item

qty

spam

42