about summary refs log tree commit diff
path: root/examples/python/gi/get-devices.py
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2022-08-16 18:24:19 +0200
committerMichael Biebl <biebl@debian.org>2022-08-16 18:24:19 +0200
commit0018d1f3cf71d680d7b6bceda55a5717244d8b26 (patch)
treea058f1d106d172d3354179437ef034c9355cdf9c /examples/python/gi/get-devices.py
parent6accbd3ec0e42d8633bbde4d47ed7bfe854e7e0b (diff)
New upstream version 1.39.90 upstream/1.39.90
Diffstat (limited to 'examples/python/gi/get-devices.py')
-rwxr-xr-xexamples/python/gi/get-devices.py42
1 files changed, 42 insertions, 0 deletions
diff --git a/examples/python/gi/get-devices.py b/examples/python/gi/get-devices.py
new file mode 100755
index 00000000..43fd9343
--- /dev/null
+++ b/examples/python/gi/get-devices.py
@@ -0,0 +1,42 @@
+#!/usr/bin/env python
+# SPDX-License-Identifier: GPL-2.0-or-later
+#
+# Copyright (C) 2014 Red Hat, Inc.
+#
+
+# This example lists all devices, both real and placeholder ones
+
+import gi
+
+gi.require_version("NM", "1.0")
+from gi.repository import NM
+
+if __name__ == "__main__":
+    client = NM.Client.new(None)
+    devices = client.get_all_devices()
+
+    print("Real devices")
+    print("------------")
+    for d in devices:
+        if d.is_real():
+            print(
+                "%s (%s): %s"
+                % (
+                    d.get_iface(),
+                    d.get_type_description(),
+                    d.get_state(),
+                )
+            )
+
+    print("\nUnrealized/placeholder devices")
+    print("------------------------------")
+    for d in devices:
+        if not d.is_real():
+            print(
+                "%s (%s): %s"
+                % (
+                    d.get_iface(),
+                    d.get_type_description(),
+                    d.get_state(),
+                )
+            )