Translating Data Types Between Elixir and Python (when using Erlport/Export)
As explained in my original post on connecting Python with Elixir, there are some data translation issues that we will have to deal with when interfacing between the two languages.
Thankfully, the Erlport documentation kindly provides a full table of the data type mappings, which we can now use to make our lives easier.
Translating On The Python Side When calling Python from Elixir, we will want pass our arguments as so:
Read more...