excel2json-3

Convert Excel Sheet into JSON file.


Keywords
excel, to, json, xlsx, xls, convertor, microsoft-excel
License
CDDL-1.1
Install
pip install excel2json-3==0.0.8

Documentation

Excel to JSON Converter

Build Status PyPI version Python Version Issues Forks Stars License Say Thanks

A minimal API that converts MS Excel (.xls & .xlsx) files, or from a given URL into JSON files.

Features

  • Download as package using pip and use in your code.

  • Supports both type of MS Excel file formats

    • MS Excel 2003 (.xls)
    • MS Excel 2007 (.xlsx)
  • It also comes with command line interface (CLI) which facilitates the conversion from URL or local MS Excel file to JSON files.

    Example:

    • GET file from URL & convert to JSON.
    excel2json-3 --urls https://example.com/example.xls
    • GET file from disk & convert to JSON.
    excel2json-3 --file /home/ubuntu/Documents/example.xlsx

Contribution

You can contribute in following ways:

  • Report bugs
  • Add more "APIs"
  • Give suggestions to make it better
  • Fix issues & submit a pull request