Blame doc/examples/list_extras_extension.py

Packit Service 21c75c
# Copyright (C) 2015  Red Hat, Inc.
Packit Service 21c75c
#
Packit Service 21c75c
# This copyrighted material is made available to anyone wishing to use,
Packit Service 21c75c
# modify, copy, or redistribute it subject to the terms and conditions of
Packit Service 21c75c
# the GNU General Public License v.2, or (at your option) any later version.
Packit Service 21c75c
# This program is distributed in the hope that it will be useful, but WITHOUT
Packit Service 21c75c
# ANY WARRANTY expressed or implied, including the implied warranties of
Packit Service 21c75c
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
Packit Service 21c75c
# Public License for more details.  You should have received a copy of the
Packit Service 21c75c
# GNU General Public License along with this program; if not, write to the
Packit Service 21c75c
# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
Packit Service 21c75c
# 02110-1301, USA.  Any Red Hat trademarks that are incorporated in the
Packit Service 21c75c
# source code or documentation are not subject to the GNU General Public
Packit Service 21c75c
# License and may only be used or replicated with the express permission of
Packit Service 21c75c
# Red Hat, Inc.
Packit Service 21c75c
Packit Service 21c75c
"""An extension that lists installed packages not available
Packit Service 21c75c
   in any remote repository.
Packit Service 21c75c
"""
Packit Service 21c75c
Packit Service 21c75c
import dnf
Packit Service 21c75c
Packit Service 21c75c
Packit Service 21c75c
if __name__ == '__main__':
Packit Service 21c75c
Packit Service 21c75c
    with dnf.Base() as base:
Packit Service 21c75c
        # Repositories serve as sources of information about packages.
Packit Service 21c75c
        base.read_all_repos()
Packit Service 21c75c
        # A sack is needed for querying.
Packit Service 21c75c
        base.fill_sack()
Packit Service 21c75c
Packit Service 21c75c
        # A query matches all packages in sack
Packit Service 21c75c
        q = base.sack.query()
Packit Service 21c75c
Packit Service 21c75c
        # Derived query matches only available packages
Packit Service 21c75c
        q_avail = q.available()
Packit Service 21c75c
        # Derived query matches only installed packages
Packit Service 21c75c
        q_inst = q.installed()
Packit Service 21c75c
Packit Service 21c75c
        available = q_avail.run()
Packit Service 21c75c
        for pkg in q_inst.run():
Packit Service 21c75c
            if pkg not in available:
Packit Service 21c75c
                print(str(pkg))