Presenting the result as a table in dynamo

:exploding_head:
If you have Dynamo 2.18+ (and can install the tabulate library)
Two Lines!

import pandas as pd
OUT = pd.read_csv(IN[0]).to_markdown()

2 Likes