Hi @Patrick-Data
Yes, you can do it only you have to follow below steps -
1. Open Google sheet from which you want fetch data
![ajaypanday678_1-1706676204688.png ajaypanday678_1-1706676204688.png](/t5/image/serverpage/image-id/6046iF7FE445EF75E34B8/image-size/medium/is-moderation-mode/true?v=v2&px=400)
2. Go to -File->Share->Publish to web- Select sheet->Select Sheet ->select .csv
![ajaypanday678_0-1706675978142.png ajaypanday678_0-1706675978142.png](/t5/image/serverpage/image-id/6045iBB06BA13FF025D59/image-size/medium/is-moderation-mode/true?v=v2&px=400)
4. Click on publish ->copy the URL
5. Use below code to fetch the live data
import pandas as pd
pdDF = pd.read_csv("URL which you have copied")
#Convert to spark DF
sparkDF = spark.createDataFrame(pdDF)
Ajay Kumar Pandey