aboutsummaryrefslogtreecommitdiff
path: root/examples/get_interface.py
blob: 797ce859708e2f35207237ec17e76b919c034e77 (plain)
1
2
3
4
5
6
7
8
9
from pymba import Vimba, VimbaException


if __name__ == '__main__':

    with Vimba() as vmb:
        # provide interface index or id
        interface = vmb.interface(0)
        print(interface)