NetworkManager/examples/python/gi/get-devices.py
Thomas Haller 09669f0045
examples/python: avoid Python2 "print" statement
Recent python-black (22.0) dropped support for Python 2 and thus fail
for those files. Make the examples Python3 compatible.

(cherry picked from commit 95e6a0a6e2)
(cherry picked from commit 2e4d1e8dc6)
(cherry picked from commit b78ca328d2)
(cherry picked from commit 25062ff17b)
2022-04-04 21:53:30 +02:00

42 lines
1,018 B
Python
Executable file

#!/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(),
)
)