Hi,
How would one go about passing a message from a Python app to an Elixir process? I tried using erlport (
https://github.com/hdima/erlport) with no luck, but I'm not sure I'm setting it up correctly and the documentation is a bit lacking in this respect. Ideally, I would like to be able to do something like this from my Python app:
cast(Atom("elixir_process"), "my message")
At this stage, I'm not overly concerned about getting the result back into the Python app, although that would be very nice too.
If anyone has a working example of something like this, I would appreciate it.
Jordan
P.S. I don't know much Ruby, but if you can give me a Ruby example of something similar, I'll take that too.