- create_package(owner, name, path=None, visibility=VK.PUBLIC)#
Create a package.
A package has a name and is either stored in a separate file or in its ownerβs file, if the owner is not the model.
- Parameters:
- owner
suite.Package
Owner of the package, which is either the model itself or a package.
- name
str
Name of the package.
- path
Path
, default:None
Path of the file for storing the package. This parameter is optional if the packageβs owner is a package. When the path is
None
and the owner is the model, the package is stored in the modelβs default file.- visibility
VK
, default:PUBLIC
Accessibility of the package, which is either public or private.
- owner
- Returns:
suite.Package