Call julia operator function * from python

Hi,

If in julia I have a function:

module MyModule

function *(a, b)
  a - b
end

end # module

Is there a way to call that function from python using pyjulia?