I was getting tired of going to manually download the latest virtio-win iso, so I made this Python script that automatically fetches the latest virtio-win iso with version number. (yes, i could've just always fetched the latest but I wanted the versioned file.)
Figured I'd share in case it could be useful to anyone else. Note that it requires installation of
Read more
Figured I'd share in case it could be useful to anyone else. Note that it requires installation of
python3-requests python3-bs4 python3-tqdm
Python:
#!/usr/bin/env python3
# install libraries
# apt install python3-requests...
Read more