Metadata-Version: 2.1
Name: jsonl2json
Version: 1.0.0
Summary: A Python library for converting data in the JSON Lines (.jsonl) format to the standard JSON (.json) format
Author-email: Ismail Ibrahim <ismailsoftdev@gmail.com>
Project-URL: Homepage, https://github.com/ismailsoftdev/jsonl2json
Project-URL: Bug Tracker, https://github.com/ismailsoftdev/jsonl2json/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# Jsonl2json

A Python library for converting data in the JSON Lines (.jsonl) format to the standard JSON (.json) format

## Installation

You can install `jsonl2json` using `pip`:
<br>

```shell
pip install jsonl2json
```

## Usage

You can use `jsonl2json` in your Python code like this:

```python
from jsonl2json import JsonlToJsonFormatter

jsonl = JsonlToJsonFormatter('input.jsonl', 'output.json')
jsonl.to_json()
```

This will read the input file input.jsonl and write a JSON array to the output file output.json.

# License

jsonltojson is released under the MIT `License.txt`. See LICENSE for more information.
