Metadata-Version: 2.1
Name: sd-sdk-python
Version: 0.2.0
Summary: Python helper module for the Sound Designer SDK
Author: Mark Melvin
Author-email: mark.melvin@onsemi.com
Requires-Python: >=3.7,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown

# sd-sdk-python
This module is a Python helper module for the Sound Designer SDK

This Python module depends on a copy of the Sound Designer SDK being accessible on your computer. Make sure you have unzipped the Sound Designer SDK somewhere and then set the environment variable `SD_SDK_ROOT` to the root folder of the unzipped SDK, or to the path containing the Windows binaries (.dlls), Python module (`sd.pyd`), and `sd.config` file.

To test whether or not this module can resolve a valid Sound Designer SDK, you can run the following commands:

```python
import sd_sdk_python
print(sd_sdk_python.get_product_manager().Version)
```

