mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-30 12:51:10 +00:00
17 lines
257 B
Python
17 lines
257 B
Python
.core = pyimport "core"
|
|
.io = pyimport "io"
|
|
.plotting = pyimport "plotting"
|
|
.util = pyimport "util"
|
|
|
|
{
|
|
.DataFrame!;
|
|
.Series!;
|
|
.Index;
|
|
} = pyimport "core/api"
|
|
|
|
{
|
|
.read_csv!;
|
|
} = pyimport "io/parsers"
|
|
{
|
|
.read_json!;
|
|
} = pyimport "io/json"
|