import aspose.cells
from aspose.cells import Workbook, LoadOptions, LoadFormat

# The path to the documents directory.
dataDir = ""

# Set LoadOptions
loadOptions = LoadOptions(LoadFormat.SXC)

# Create a Workbook object and opening the file from its path
workbook = Workbook(dataDir + "Input.sxc", loadOptions)
print("SXC file opened successfully!")

# Save for check
workbook.save("Output.xlsx")