Note of Using Python

Module specifications

We provide a module file as an interface for Python.

The Python module file name of API-AIO(WDM) is caio.py.
When using this module, import processing is required.

For example, when importing caio.py

import caio
 

Function specifications

API-AIO(WDM) functions can be called by functions in the module.
Therefore, when calling an API-AIO(WDM) function, add a period "." after the namespace name and call the function.

In Python, the characters of the module name without the extension ".py" are the namespace.

For example, when you want to call the AioInit function

Ret = caio.AioInit()
 

Function parameters and return value

The contents of the parameters and the return value of functions are common regardless of the development language.
Please refer to the function reference for details.