Retrieves possible conversions for the source document.
The returned object provides access to all conversion options, including primary and secondary formats, and includes metadata about the source file.
defget_possible_conversions(self):...
Returns: GroupDocs.Conversion.Fluent.PossibleConversions: An object containing the source description and collections of conversion formats.
Example
fromgroupdocs.conversionimportConverterwithConverter("report.xlsx")asconverter:conversions=converter.get_possible_conversions()primary=[c.formatforcinconversions.allifc.is_primary]print(f"Primary targets for {conversions.source.description}: {primary}")