I am trying to understand a python class and its use. Here is an example of its use on Linux:
from Lima import Andor
from lima import Core
cam = Andor.Camera("/usr/local/etc/andor", 0)
Here is the source of the package: https://github.com/esrf-bliss/Lima-camera-andor. I have installed this package on windows, however there is no documentation for its use or syntax. I would like to know what I should use instead of "/usr/local/etc/andor" for my system. Is there any way to look at the source code for this Andor class?
EDIT:
actually running the example code above returns:
runfile('C:/Users/BioPhotonics/.spyder-py3/untitled0.py', wdir='C:/Users/BioPhotonics/.spyder-py3')
`Traceback (most recent call last):
File "C:\Users\BioPhotonics\.spyder-py3\untitled0.py", line 14, in
` cam = Andor.Camera("/usr/local/etc/andor", 0)
Exception: Hardware: lima::Andor::Camera::Camera(C:\miniconda3\conda-bld\lima-camera-andor_1568271992368\work\src\AndorCamera.cpp, 120): `InvalidValue: Invalid Camera number
help(Andor)?InvalidValue: Invalid Camera number- Did you check this ?