File size: 834 Bytes
ce24f5e
 
 
 
 
 
 
 
a6028d3
 
ce24f5e
 
 
 
a6028d3
ce24f5e
 
 
 
 
 
 
 
 
 
 
 
 
a6028d3
ce24f5e
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import os
import sys
from pathlib import Path

import fire
from typing import Optional

# add src to the pythonpath so we don't need to pip install this
project_root = os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))
src_dir = os.path.join(project_root, "src")
sys.path.insert(0, src_dir)

from axolotl.convert import *


def main(
    input: Path,
    output: Optional[Path] = None,
    to_stdout: Optional[bool] = False,
):
    file_reader = FileReader()
    if to_stdout or output is None:
        writer = StdoutWriter()
    else:
        writer = FileWriter(output)
    json_parser = JsonParser()
    jsonl_serializer = JsonlSerializer()

    converter = JsonToJsonlConverter(file_reader, writer, json_parser, jsonl_serializer)

    converter.convert(input, output)


if __name__ == "__main__":
    fire.Fire(main)