Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Lorenzob
/
astra
like
0
Text Generation
Diffusers
doi:10.57967/hf/2194
llm
Model card
Files
Files and versions
Use this model
main
astra
/
doc
/
examples
/
print_uris.py
Lorenzob
Upload folder using huggingface_hub
859a779
verified
about 1 year ago
raw
Copy download link
history
blame
Safe
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)