I have this code Where I want to hyperlink urlvalue to the title
I tried to insert HTML hyperlink but got exception error...
But I like to get hyperlink in the table with two values like Title will be clickable with url value
I have this code Where I want to hyperlink urlvalue to the title
I tried to insert HTML hyperlink but got exception error...
But I like to get hyperlink in the table with two values like Title will be clickable with url value
Use 'unsafehtml' format like this.
tabulate(output, tablefmt='unsafehtml')
But don't forget to escape other cell values by yourself.(using the html.escape()
)