    

 ## On this page

  

 

 # ansys.meshing.prime.Model

 Last update: 20.02.2026 

<a id="ansys.meshing.prime.Model.parts"></a>

#### *property* Model.parts *: [List](https://docs.python.org/3.11/library/typing.html#typing.List)\[[Part](ansys.meshing.prime.Part.md#ansys.meshing.prime.Part)\]*

Get the list of parts for the model.

- **Returns:**
    
    `List`\[[`Part`](ansys.meshing.prime.Part.md#ansys.meshing.prime.Part)\] : List of parts for the model.

### Examples

```pycon
&gt;&gt;&gt; from ansys.meshing.prime import Model
&gt;&gt;&gt; model = client.model
&gt;&gt;&gt; parts = model.parts

```