Importing .pyd module

You can’t import C python modules directly into iron python but you can launch a sub-process with a regular python interpreter (or any other program for that matter), pipe data over to the sub-process, perform the desired functionality and finally bring the result back over to Dynamo.

A common way to send data back and forward is with an intermediate file.