Metadata-Version: 2.1
Name: jmdexcel
Version: 0.1.0
Summary: 
Author: ptakwal
Author-email: ptakwal@yahoo.com
Requires-Python: >=3.8,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Description-Content-Type: text/markdown

JmdExcel 

Handling of json data
select.py
a) select_all()

Parameters:

file_path : It expects a relative path of the json data file
entity : It expects the name of the entity like customer, department or organization etc.
Return

It will return a entity json data
insert.py
a) insert_me(file_path, entity, **data)

Parameters:

file_path : It expects a relative path of the json data file
entity : It expects the name of the entity like customer, department or organization etc.
data : It expects the keyword arguments having json data.
Return

It will return a entity json data
Sample json data
{ "data": [ { "name": "Prashant", "age": "50", "sex": "Male", "organization": "TCS", "department": "RnD", "isActive": "true" }, { "name": "Nishant", "age": "50", "sex": "Male", "organization": "TCS", "department": "RnD", "isActive": "true" }, { "name": "Ranjan", "age": "50", "sex": "Female", "organization": "TCS", "department": "RnD", "isActive": "true" }, { "name": "Appu", "age": "27", "sex": "Male", "organization": "TCS", "department": "RnD", "isActive": "true" } ] }
