Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
A minimal API that converts MS Excel (.xls & .xlsx) files, or from a given URL into JSON files.
Download as package using pip
and use in your code.
Supports both type of MS Excel file formats
It also comes with command line interface (CLI) which facilitates the conversion from URL or local MS Excel file to JSON files.
Example:
excel2json-3 --urls https://example.com/example.xls
excel2json-3 --file /home/ubuntu/Documents/example.xlsx
You can contribute in following ways:
pipenv
(Recommended)pipenv install excel2json-3
pip
pip install excel2json-3
from excel2json import convert_from_file
EXCEL_FILE = '../example.xls' # or '../example.xlsx'
convert(EXCEL_FILE)
from excel2json import convert_from_url
EXCEL_FILE_URL = 'https://www.example.com/example.xlsx'
convert(EXCEL_FILE_URL)
pipenv
(Recommended)Install pipenv
pip install pipenv
Create env
cd excel2json-3 # cd <repo_dir>
pipenv --three install
Activate env
pipenv shell
Install requirements from Pipefile
pipenv sync
virtualenv
Install virtualenv
pip install virtualenv
Create virtualenv
mkdir myvenv
cd myvenv
virtualenv myvenv
Activate myvenv
venv
source myvenv/bin/activate
or
. myvenv/bin/activate
Install from requirements.txt
pip install -r requirements.txt
```
pytest tests/test.py
```
FAQs
Convert Excel Sheet into JSON file.
We found that excel2json-3 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.