I'm trying to use Python3 to download a zip from GitHub. The name of this zip is always slightly different:
projectname-author-x.x.x-lib-x.x.x.zip
I want to do something like:
import whatever
download https://github.com/user/repo/asset/type=zip to /home/me/a-really-sus-archive.zip
print ("Done")
edit: found this