PartStub#

class ansys.speos.core.kernel.part.PartStub(channel)#

Bases: ansys.speos.core.kernel.crud.CrudStub

Database interactions for part.

Parameters:
channelgrpc.Channel

Channel to use for the stub.

Examples

The best way to get a PartStub is to retrieve it from SpeosClient via parts() method. Like in the following example:

>>> from ansys.speos.core.speos import Speos
>>> speos = Speos(host="localhost", port=50098)
>>> part_db = speos.client.parts()

Overview#

create

Create a new entry.

read

Get an existing entry.

update

Change an existing entry.

delete

Remove an existing entry.

list

List existing entries.

Import detail#

from ansys.speos.core.kernel.part import PartStub

Method detail#

PartStub.create(message)#

Create a new entry.

Parameters:
messagepart.Part

Datamodel for the new entry.

Returns:
ansys.speos.core.kernel.part.PartLink

Link object created.

PartStub.read(ref)#

Get an existing entry.

Parameters:
refansys.speos.core.kernel.part.PartLink

Link object to read.

Returns:
part.Part

Datamodel of the entry.

PartStub.update(ref, data)#

Change an existing entry.

Parameters:
refansys.speos.core.kernel.part.PartLink

Link object to update.

datapart.Part

New datamodel for the entry.

PartStub.delete(ref)#

Remove an existing entry.

Parameters:
refansys.speos.core.kernel.part.PartLink

Link object to delete.

PartStub.list()#

List existing entries.

Returns:
List[ansys.speos.core.kernel.part.PartLink]

Link objects.