Easily transform JSON data to Excel spreadsheets and vice versa. See it in action on Heroku
Clone the repo:
$ git clone https://github.com/RobinCheptileh/json-excel.git
Move into the directory:
$ cd json-excel
Install dependencies:
$ pip install -r requirements.txt
Start the gunicorn server:
$ gunicorn app:app
Endpont:
/api/v1/to-spreadsheet
Data:
{
"header": ["A", "B", "C"],
"rows": [
[1, 2, 3],
[4, 5, 6]
]
}
Request:
POST /api/v1/to-spreadsheet
Content-Type: application/json
Accept-Encoding: gzip, deflate
Content-Length: 71
Connection: keep-alive
{ "header": ["A", "B", "C"], "rows": [ [1, 2, 3], [4, 5, 6] ] }
Spreadsheet Response:
Endpont:
/api/v1/to-json
More Coming Soon!
Bug reports and pull requests are welcome on GitHub at https://github.com/robincheptileh/json-excel. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
The program is available as open source under the terms of the MIT License.
Everyone interacting in the Json Excel’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.