No but asking to make a HTML it did this Python script 😅
# Create HTML table
html_table = """
<table border="1" cellpadding="5" cellspacing="0">
<tr>
<th>Month</th>
<th>Reference Number</th>
<th>Amount</th>
</tr>
<!-- (...) omitted on purpose (...) -->
<tr>
<td>Janvier 21</td>
<td>32612950</td>
<td>98.88</td>
</tr>
</table>
"""
print(html_table)
Asking to generate a CSV file, it will render the csv in a code block.
The goal was to save time not to go through addition hops, but yeah that was worth trying 🙏