import_metadata method

import_metadata(self, file_path, format, import_options)

Imports the metadata properties to a file.


def import_metadata(self, file_path, format, import_options):
    ...
Parameter Type Description
file_path System.String The full name of the input file.
format groupdocs.metadata.importing.ImportFormat The format of the input file.
import_options groupdocs.metadata.importing.ImportOptions Additional options to use when importing.

import_metadata(self, stream, format, import_options)

Imports the metadata properties to a file.


def import_metadata(self, stream, format, import_options):
    ...
Parameter Type Description
stream io.RawIOBase The filestream of the input file.
format groupdocs.metadata.importing.ImportFormat The format of the input file.
import_options groupdocs.metadata.importing.ImportOptions Additional options to use when importing.

See Also