aboutsummaryrefslogtreecommitdiff
path: root/examples/interface/list_feature_infos.py
blob: fefa079bfb82cc9a3110816010e1eb96cbe51e81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from pymba import Vimba


if __name__ == '__main__':

    with Vimba() as vimba:
        interface = vimba.interface(0)
        interface.open()

        for feature_name in interface.feature_names():
            feature = interface.feature(feature_name)
            print(feature.info)

        interface.close()