expyplot v1.1.3 Expyplot.Export

Wrapper for Erlport stolen from the interwebs.

Link to this section Summary

Functions

Execute the given function found in the given module with the given arguments and return the result.

Start the python instance.

Stops the Python instance.

Link to this section Functions

Link to this function

call(pid, mod, func, args \\ [])

Execute the given function found in the given module with the given arguments and return the result.

Examples

iex> pid = Expyplot.Export.start() iex> Expyplot.Export.call(pid, :operator, :add, [5, 2]) 7

Link to this function

start(opts \\ [])

Start the python instance.

Examples

iex> pid = Expyplot.Export.start() iex> is_pid(pid) true

Stops the Python instance.

Examples

iex> pid = Expyplot.Export.start() iex> Expyplot.Export.stop(pid) :ok