mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-20 12:50:06 +01:00
20 lines
601 B
Python
20 lines
601 B
Python
|
|
#!/usr/bin/env python
|
||
|
|
# SPDX-License-Identifier: GPL-2.0+
|
||
|
|
#
|
||
|
|
# Copyright (C) 2019 Red Hat, Inc.
|
||
|
|
#
|
||
|
|
|
||
|
|
import gi
|
||
|
|
gi.require_version('NM', '1.0')
|
||
|
|
from gi.repository import GLib, NM
|
||
|
|
|
||
|
|
if __name__ == "__main__":
|
||
|
|
client = NM.Client.new(None)
|
||
|
|
devices = client.get_devices()
|
||
|
|
|
||
|
|
for d in devices:
|
||
|
|
print("{:<16} {:<16} {}".format(d.get_iface(),
|
||
|
|
"(" + d.get_type_description() + ")",
|
||
|
|
NM.utils_enum_to_str(NM.DeviceInterfaceFlags,
|
||
|
|
d.get_interface_flags())))
|