Skip to main content

Convert Excel Sheet into JSON file.

Project description

Excel to JSON Converter

Build Status PyPI version Python Version Say Thanks

A minimal API that downloads MS Excel (XLS + XLSX) file from a given URL and converts a given sheet into JSON file.

Contribution & License

You can contribute in following ways:

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

Installation

Using pipenv (Recommended)

pipenv install excel2json-3

Using pip

pip install excel2json-3

Uses

Convert MS Excel File to JSON file

from excel2json import convert_from_file


EXCEL_FILE = '../example.xls'  # or '../example.xlsx'
convert(EXCEL_FILE)

Convert to JSON file directly from URL

from excel2json import convert_from_url


EXCEL_FILE_URL = 'https://www.example.com/example.xlsx'
convert(EXCEL_FILE_URL)

DEVELOPEMENT

Pre-requisites

  1. Python 3

Create Virtual Enviroment

Using pipenv (Recommended)

  1. Install pipenv

    pip install pipenv
    
  2. Create env

    cd excel2json-3  # cd <repo_dir>
    pipenv --three install
    
  3. Activate env

    pipenv shell
    
  4. Install requirements from Pipefile

    pipenv sync
    

Using virtualenv

  1. Install virtualenv

    pip install virtualenv
    
  2. Create virtualenv

    mkdir myvenv
    cd myvenv
    virtualenv myvenv
    
  3. Activate myvenv venv

    source myvenv/bin/activate
    
    or 
    
    . myvenv/bin/activate
    
  4. Install from requirements.txt

    pip install -r requirements.txt
    

Testing

```
pytest tests/test.py
``` 

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

excel2json-3-0.1.0.tar.gz (2.9 kB view hashes)

Uploaded Source

Built Distribution

excel2json_3-0.1.0-py3-none-any.whl (2.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page