On Monday, January 18, 2016 at 6:03:15 PM UTC-5, Rob wrote:
>
> I am trying to use the python MNE library in Julia.
>
> When I call the python function it returns a `Dict{Any,Any}` instead of a
> type `info`, when I pass this variable back to another python function I
> get the error
>
You can use the lower-level "pycall" function to have more control over the
return type and any conversions.
e.g. you can do
pycall(somepythonfunction, PyObject, args....)
to return a "raw" Python object with no conversions.