Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 1.58 KB

README.md

File metadata and controls

42 lines (32 loc) · 1.58 KB

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