# Importing ReCap Files

> Learn how to import ReCap files (.rcp or .rcs) using the Pixyz SDK, including downloading the ReCap SDK and configuring the API.

Importing a ReCap file (.rcp or .rcs file) requires Autodesk ReCap to be installed (with a valid license) on the same computer the process is running.

## Download ReCap SDK

Download the ReCapSDK v20.1.1, from Autodesk Developer Network website, with a valid Autodesk developer account.

![Image](/api/media?file=/asset-transformer-sdk/media/images/101/recap.png)

## Configuring API

To start importing .wire files the API needs to be configured at the beginning of your script:

```python title="Python"
pxz.core.setModuleProperty("IO", "RecapSDKPath", "*PATH_TO_RECAP_INSTALL*/bin/")
```

```csharp title="C#"
pxz.Core.SetModuleProperty("IO", "RecapSDKPath", "*PATH_TO_RECAP_INSTALL*/bin/");
```
