import_csv method

import_csv

Import a CSV file to the cells.

def import_csv(self, file_name, options, first_row, first_column):
    ...
ParameterTypeDescription
file_namestrThe CSV file name.
optionsTxtLoadOptionsThe load options for reading text file
first_rowintThe row number of the first cell to import in.
first_columnintThe column number of the first cell to import in.

import_csv

Import a CSV file to the cells.

def import_csv(self, stream, options, first_row, first_column):
    ...
ParameterTypeDescription
streamio.RawIOBaseThe CSV file stream.
optionsTxtLoadOptionsThe load options for reading text file
first_rowintThe row number of the first cell to import in.
first_columnintThe column number of the first cell to import in.

import_csv

Import a CSV file to the cells.

def import_csv(self, file_name, splitter, convert_numeric_data, first_row, first_column):
    ...
ParameterTypeDescription
file_namestrThe CSV file name.
splitterstrThe splitter
convert_numeric_databoolWhether the string in text file is converted to numeric data.
first_rowintThe row number of the first cell to import in.
first_columnintThe column number of the first cell to import in.

import_csv

Import a CSV file to the cells.

def import_csv(self, stream, splitter, convert_numeric_data, first_row, first_column):
    ...
ParameterTypeDescription
streamio.RawIOBaseThe CSV file stream.
splitterstrThe splitter
convert_numeric_databoolWhether the string in text file is converted to numeric data.
first_rowintThe row number of the first cell to import in.
first_columnintThe column number of the first cell to import in.

See Also