How to change the hint on inputs in Python GH component?

How can I change the message shown as default when the mouse is on top of the input variables of my components?

python

Thanks!!

With a C# component it looks like this (mouseover for both Input and the black part of the Component):

// Rolf

1 Like

You can also follow this docstring convention in GHPython to document the component and parameter descriptions (and add whatever else meta data you might like/need under Remarks):

181015_GHPython_DocStringComponentDocumentation_00.gh (1.9 KB)

Edit: I think V6 actually does this by default when instantiating a new GHPython component, or it did at one point at least.

Thanks Rolf! I was thinking on Python but that’s useful as well!

Actually you are right, in the v6 cames by default with the python component… Thanks!!