Azure Function - Pandas dataframe to Excel, write to outputBlob stream
问题 Am trying to write a DataFrame to an outputBlob from an Azure Function. I'm having trouble figuring out which io stream to use. My function looks like this: import io import xlrd import pandas as pd def main(myblob: func.InputStream, outputBlob: func.Out[func.InputStream]): logging.info(f"Python blob trigger function processed blob \n" f"Name: {myblob.name}\n" f"Blob Size: {myblob.length} bytes") input_file = xlrd.open_workbook(file_contents = myblob.read()) df = pd.read_excel(input_file) if