JFIO is a high-performance Python package for reading and writing JSON files, powered by the popular C++ library nlohmann/json and pybind11. This package aims to provide simple and efficient JSON input/output operations while maintaining a user-friendly API.
- High-performance JSON serialization and deserialization
- Simple and easy-to-use API with just two main functions:
read
andwrite
- Compatible with Python 3.6 and later
- C++ compiler with support for C++11 or later
- Python 3.6 or later
- pybind11
pip install JFIO
git clone git@github.com:PabloIbannez/JFIO.git
cd JFIO
python setup.py install
Alternatively:
git clone git@github.com:PabloIbannez/JFIO.git
cd JFIO
pip install .
Here is a basic example of how to use JFIO for reading and writing JSON files:
import JFIO
# Writing a JSON file
data = {
"name": "Alice",
"age": 30,
"city": "New York"
}
JFIO.write("output.json", data, formatted=True)
# Reading a JSON file
data_read = JFIO.read("output.json")
print(data_read)
Write JSON data to a file.
Arguments:
filename
(str): The name of the file to write to.data
: The data to write. This can be any data type that is serializable to JSON.formatted
(bool): Write JSON file in a human-readable format. Default:False
.
Read JSON data from a file.
Arguments:
filename
(str): The name of the file to read from.
Returns:
- Parsed JSON data as a Python data structure.
This project is licensed under the MIT License.
Contributions are welcome! Please feel free to submit a pull request or open an issue if you have any questions or suggestions.
- nlohmann/json for providing the powerful C++ JSON library
- pybind11 for enabling seamless Python-C++ bindings
- pybind11_json for simplifying the integration of nlhomann/json with pybind11