    

 ## On this page

  

 

 # ansys.meshing.prime.examples

 Last update: 17.07.2025 

### ansys.meshing.prime.examples.download\_saddle\_bracket\_dsco(destination=None, force=False)

Download DSCO file for the saddle bracket example.

- **Parameters:****destination: Optional\[str\]**: Destination for the file to be downloaded. If nothing is provided, the default path in app data is used.
    
    **force: bool**: Option to download the file. If true, the file is always downloaded. If false, an existing file in the cache may be reused.
- **Returns:**[`str`](https://docs.python.org/3.11/library/stdtypes.html#str): Local path to the downloaded file.
- **Return type:**[`Union`](https://docs.python.org/3.11/library/typing.html#typing.Union)\[[`str`](https://docs.python.org/3.11/library/stdtypes.html#str), [`PathLike`](https://docs.python.org/3.11/library/os.html#os.PathLike)\]

### Examples

```pycon
&gt;&gt;&gt; import ansys.meshing.prime as prime
&gt;&gt;&gt; import ansys.meshing.prime.examples as prime_examples
&gt;&gt;&gt; with prime.launch_prime() as session:
&gt;&gt;&gt;     model = session.model
&gt;&gt;&gt;     saddle_bracket = prime_examples.download_saddle_bracket_dsco()
&gt;&gt;&gt;     with prime.FileIO(model) as io:
&gt;&gt;&gt;         _ = io.import_cad(saddle_bracket, params=prime.ImportCADParams(model))
&gt;&gt;&gt;     print(model)

```