Model YAML:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
models:
  - name: python_model
    driver: PythonModelDriver  # Runs the python script using default Python
    args: ./src/gs_lesson3.py

    inputs:
      - name: input
        driver: FileInputDriver
        args: ./Input/input.txt

    outputs:
      - name: output
        driver: FileOutputDriver
        args: ./output.txt

(Example in other languages)