aboutsummaryrefslogtreecommitdiff
path: root/examples/get_interface_feature_names.py
blob: 83cf1a35a366d429266587ee76a295d93451d103 (plain)
1
2
3
4
5
6
7
8
9
10
11
from pymba import Vimba, VimbaException


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()