How to set an html link in a description tab with Py4C

Hi,
I would like to massively add a dynamic html links in description tabs of component exchanges.
Is it possible to do it with Py4C?
thanks
d

Yes, you can use:

myComponentExhange.set_description("<a href="url">link text</a>")

The description is a string with HTML tags.

You can use:

existring_description = myComponentExhange.get_description()

To get the existing description.