I have some custom utility script in python and my question is how to create help description for them in Python editor.
Example:
Help on function Infinite in module sweep_utility:
- | Infinite()*
I have some custom utility script in python and my question is how to create help description for them in Python editor.
Example:
Help on function Infinite in module sweep_utility:
Hello,
If you define a docstring in your function like this :
Then when you type it in a separate script you will see the docstring in the rhino python editor.
You can also access the docstring by typing help(sweep_utility.infinite)