-
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Frank M. Taylor
committed
Sep 19, 2022
1 parent
bd78fcf
commit 1731caf
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
# xlsx-to-json | ||
Using Python, convert an Excel document to JSON | ||
Using Python, convert an Excel (xlsx) document to JSON | ||
|
||
|
||
## dependencies | ||
* pylightxl | ||
|
||
you can run `pip install pylightxl` in your terminal/command window if you don't have these dependencies installed | ||
you can run `pip3 install pylightxl` in your terminal/command window if you don't have these dependencies installed | ||
|
||
## Usage | ||
|
||
* Run the command `python xlstojson.py` in your terminal/command window | ||
* Run the command `python3 xlstojson.py` in your terminal/command window | ||
* Do what the prompt says (which is enter the path to the file) | ||
|
||
A .json file matching the name of your xlsx document will be generated. | ||
|
||
|
||
## Caveats and Whatnots | ||
I'm not a Python Programmer. The code is written about as well as a non-Python programmer programming Python could write it. | ||
I wrote this six years ago; it was the first thing I'd ever written in Python. This code was written about as well as a non-Python programmer programming Python could write it. | ||
|
||
Forgive me, I don't know what I'm doing | ||
I have made attempts to improve it, but I may still not know what I'm doing | ||
|
||
|