Hi, I’m developing a plugin for rhino, my scripts are written in Python. Is there a way to make a dll for my plugin? I intend to license it in the future and I need a dll file
Tom_P
October 18, 2024, 5:00pm
2
??
rhino plugins with extension .rhp are dlls - just with changed extensions.
Right. So the correct thing would be for me to change the RHP extension to Dll and for the user to install the Yak file in rhino
eirannejad
(Ehsan Iran-Nejad)
October 18, 2024, 5:19pm
4
@Roberto_da_Silva_Kum
Review this please before publishing and potentially selling your script plugins:
Always assume that when you are sharing scripts in published plugins, the source is either embedded or deployed on the target machine. Not all supported languages allow ‘compiling’ scripts into machine code so published plugins carry the source (and package requirements embedded within the source).
In case of CPython, I need to put the python module on the local disk so I can add the path to python runtime. Same with dotnet libs. They get compiled as a .dll and placed on disk which means that i…
1 Like