save method

save(file_name)

Creates and saves the inline xbrl file to the disk.

def save(self, file_name):
    ...
ParameterTypeDescription
file_namestrThe name of created file.

save(stream)

Creates and saves the inline xbrl file to the stream.

def save(self, stream):
    ...
ParameterTypeDescription
streamio.RawIOBaseThe stream.

save(file_name, save_options)

def save(self, file_name, save_options):
    ...
ParameterTypeDescription
file_namestr
save_optionsSaveOptions

save(stream, save_options)

def save(self, stream, save_options):
    ...
ParameterTypeDescription
streamio.RawIOBase
save_optionsSaveOptions

See Also