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


if __name__ == '__main__':

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

        for feature_name in interface.feature_names():
            print(feature_name)

        interface.close()