import_excel_file method

import_excel_file

Imports the excel file from the file path.

def import_excel_file(self, file_name):
    ...
ParameterTypeDescription
file_namestrThe full path of the file.

import_excel_file

Imports the excel file from the file path.

def import_excel_file(self, uid, file_name):
    ...
ParameterTypeDescription
uidstrThe unique id for the file cache, if set to null,it will be generated automatically.
file_namestrThe full path of the file.

import_excel_file

Imports the excel file from file stream with load format.

def import_excel_file(self, filestream, format):
    ...
ParameterTypeDescription
filestreamio.RawIOBaseThe stream of the excel file .
formatGridLoadFormatThe LoadFormat of the excel file.

import_excel_file

Imports the excel file from file path and open password.

def import_excel_file(self, uid, file_name, password):
    ...
ParameterTypeDescription
uidstrThe unique id for the file cache, if set to null,it will be generated automatically.
file_namestrThe full path of the file.
passwordstrThe open password of the excel file.The value can be null If no passowrd is set.

import_excel_file

Imports the excel file from file stream.

def import_excel_file(self, uid, filestream, format):
    ...
ParameterTypeDescription
uidstrThe unique id for the file cache, if set to null,it will be generated automatically.
filestreamio.RawIOBaseThe stream of the excel file .
formatGridLoadFormatThe LoadFormat of the excel file.

import_excel_file

Imports the excel file from file stream with load format and open password.

def import_excel_file(self, filestream, format, password):
    ...
ParameterTypeDescription
filestreamio.RawIOBaseThe stream of the excel file .
formatGridLoadFormatThe LoadFormat of the excel file.
passwordstrThe open password of the excel file.The value can be null If no passowrd is set.

import_excel_file

Imports the excel file from file stream with load format and open password.

def import_excel_file(self, uid, filestream, format, password):
    ...
ParameterTypeDescription
uidstrThe unique id for the file cache, if set to null,it will be generated automatically.
filestreamio.RawIOBaseThe stream of the excel file .
formatGridLoadFormatThe LoadFormat of the excel file.
passwordstrThe open password of the excel file.The value can be null If no passowrd is set

See Also