astra / doc /examples /print_uris.py
Lorenzob's picture
Upload folder using huggingface_hub
859a779 verified
raw
history blame
179 Bytes
#!/usr/bin/python3
#
# a example that prints the URIs of all upgradable packages
#
import apt
for pkg in apt.Cache():
if pkg.is_upgradable:
print(pkg.candidate.uri)