- Add support for GPG confirmation
- Add backend for DNF5Daemon
- Add better flatpak search support for available flatpaks
View python.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"main function": { | |
"prefix": [ | |
"def main", | |
"if __name__" | |
], | |
"body": [ | |
"def main() -> None:", | |
" print(\"Hello World!\")", | |
"", |
View dnf5_daemon.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
|
View yumex-todo.md
View gtk4_label_with_link.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import gi | |
gi.require_version("Gtk", "4.0") | |
from gi.repository import Gtk # noqa | |
def on_activate(app): | |
win = Gtk.ApplicationWindow( | |
application=app, title="Gtk4 is Awesome !!!", default_height=200, default_width=400 | |
) |
View group-api.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from __future__ import print_function | |
import sys | |
# insert your own dnf git checkout build path here | |
sys.path.insert(0, '/home/tim/udv/tmp/dnf/dnf') | |
import dnf | |
class DnfBase(dnf.Base): | |
''' |