I have a list of tuples in Python that I would like to output to a table in reStructuredText.
The docutils library has great support for converting reStructuredText
Check out the tabulate package. It can output RST format by:
print tabulate(table, headers, tablefmt="rst")