download file from colab code example
Example 1: download from colab
from google.colab import files
files.download("path")
Example 2: colab download file from url
!wget yoururl
#that's it
from google.colab import files
files.download("path")
!wget yoururl
#that's it