I got icon data into a Python list. How could I get this icon data into pixbuf? I could not find it in this source.
Here is the code I get icon data:
from gi.repository import Gio
apps = Gio.AppInfo.get_all()
icon = apps[0].get_icon()
print(icon)
Python 3, GTK3, OS: Debian-like Linux.