alejho - 2021-06-22

Hi all,
I'm working at a script to autoconfigure some aspects of a project.
The script will be interactive and submit some questions to the user.
Is it possible to edit the parameterization of an axis from a python script?
For example let's say I want to change the axis type and limit like I can do manually from its editor...how can I do?

from __future__ import print_function

proj = projects.primary
device = proj.find('myAxis', recursive = True)[0]

param = device.device_parameters

#how to list and edit device parameters from here
param.?

Thank you for any kind of help!
Ciao!