Convert XLS to TSV via Python
Export Excel spreadsheets to TSV format using Python APIs.
How to Convert XLS to TSV Using Python
In order to convert XLS to TSV, we will use Aspose.Cells for Python API which is a feature-rich, powerful and easy to use document manipulation and conversion API for Python platform.Steps to Convert XLS to TSV via Python
Python developers can easily load & convert XLS files to TSV in just a few lines of code.
- Load XLS file with an instance of Workbook
- Call the Workbook.Save method
- Pass output path with TSV extension as parameter
- Check specified path for resultant TSV file
System Requirements
Aspose.Cells for Python is platform-independent API and can be used on any platform (Windows, Linux and MacOS), just make sure that system have Java 1.8 or higher, Python 3.5 or higher.
- Install Java and add it to PATH environment variable, for example:
PATH=C:\Program Files\Java\jdk1.8.0_131;
. - Install Aspose.Cells for Python from pypi, use command as:
$ pip install aspose-cells
.
import jpype
import asposecells
jpype.startJVM()
from asposecells.api import Workbook
workbook = Workbook("Input.xlsx")
workbook.Save("Output.pdf")
jpype.shutdownJVM()
XLS What is XLS File Format
Files with XLS extension represent Excel Binary File Format. Such files can be created by Microsoft Excel as well as other similar spreadsheet programs such as OpenOffice Calc or Apple Numbers. File saved by Excel is known as Workbook where each workbook can have one or more worksheets. Data is stored and displayed to users in table format in worksheet and can span numeric values, text data, formulas, external data connections, images, and charts. Applications like Microsoft Excel lets you export workbook data to several different formats including PDF, CSV, XLSX, TXT, HTML, XPS, and several others. The XLS file format was replaced with a more open and structured format, XLSX, with the release of Microsoft Excel 2007. The latest versions still provide support for creating and reading XLS files, though XLSX is the first choice of use now.
Read MoreTSV What is TSV File Format
A Tab-Separated Values (TSV) file format represents data separated with tabs in plain text format. The file format, similar to CSV, is used for organization of data in a structured manner in order to import and export between different applications. The format is primarily used for data import/export and exchange in Spreadsheet applications and databases. Each record in a TSV file is contained in a single line of text file where each field value is separated by a tab character. Media type for TSV file format is text/tab-separated-values.
Read MoreOther Supported Conversions
You can also convert XLS into many other file formats including few listed below.