I am working on google colaboratory and i have mounted my gdrive to it so i can access the csv data i am processing with pandas for example.
# Mount the path to the location of your data
from google.colab import drive
drive.mount('/gdrive')
Everything works great.
But now when i share my colab to other colleagues they have no access to the csv files ofcourse. So how can i share these csv residing in my drive as well ? Or are there other alternatives to hosting the data into gdrive so i and my colleagues can access them through a panda read_csv ?