Skip to content

Add support to import modules using pyimport command

Vipul Cariappa requested to merge Vipul-Cariappa/octave-pythonic:pyimport into main

Example use:

pyimport numpy as np
np.sin(5)
from math pyimport sin
sin(5)
from math pyimport sin as s
s(5)

Depends on !79 (merged).

Merge request reports