M2-UGL_1: is there a way to download utils.py file?

I couldnt find a csv file or even a utils.py file to download so that i can replicate the content here in my own python notebook, so that I can understand with more depth and analyze the code, so is there a way to download the utils file, I can find a dataset its not an issue?

There is the ability to download the files. I would do a search here in the community or on web for “Download files from jupyter notebook” There are explanations in a few different post on how to do this.

One method:
Use the “File” menu, and then “Open” the list of files.

@saldistefano @TMosh thank you for the help guys

Here is what I did: Insert a new code cell anywhere in the lab file and run
!tar cvzpf mylab_m2_ugl_1.tar.gz *
then run
from IPython.display import FileLink
FileLink(‘mylab_m2_ugl_1.tar.gz’)

A link will appear. Just click the link to download the whole lab. Locally in your computer run tar xzvpf mylab_m2_ugl_1.tar.gz to extract the files. This way I can run the lab in my local Jupyter Lab later.

Makes sense, but then there is no Download button