aboutsummaryrefslogtreecommitdiff
path: root/examples/interface/get_interface_object.py
blob: 0465223a34d49ccf5a224e2dfebceea9173cf4e3 (plain)
1
2
3
4
5
6
7
8
9
from pymba import Vimba


if __name__ == '__main__':

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