Sharing a python class between OPs

Can we do that? Or is there any alternative or better ways for it? What I want to achieve is to share some commonly used calculation functions between DAT operators.

Totally newbie here. Thanks in advance. : )

you can just import a DAT as a module using “import path/myDat” and call the method inside via myDat.Foo()

1 Like

Ah, thanks, this works.