Hi there,
If I understand correctly, you will probably want to convert your google drive file to Blob Media first.
Something like the following:
my_file = app_files.my_google_drive_file_csv
media=anvil.BlobMedia('text/csv', my_file.get_bytes(), name='my_file.csv')
app_tables.my_table.add_row(media_column=media)