Accessing xlsx file in gcp which is present in gcs

I want to access an excel file in a cloud function which is present in the google cloud storage, what modules do I need to use?

0 3 2,283
3 REPLIES 3

You can consider trying Cloud Dataprep for reading your Excel data.

It natively supports Excel workbooks, though they need to be uploaded to Dataprep, versus being read from GCS. If you are trying to parse and clean Excel workbook data for further analysis, Dataprep may be more convenient, and it happens to use Dataflow for processing underneath.

References:

All interesting information, and .... I am Not sure if this answers the question.? 

GCS exposes a REST API.  You can invoke the REST API to retrieve the XSLX file (or any file) in a bucket in GCS. Check the documentation on GCS for more details. 

BTW, this is not really an Apigee question.