#!/bin/bash

function call_python_func() {
    python3 -c "from script import hello; hello('$1')"
}

call_python_func $1
