artkit.api#
Convenience module to import all classes and functions using single package alias.
Recommended usage is to import this module as ak
.
Example:
import artkit.api as ak
ak.run(
ak.step("add", lambda x: dict(x=x + 1)),
input=[dict(x=1), dict(x=10)],
)
Below is a list of all symbols exposed through artkit.api
: