_completer()
{{
    local IFS=$'\n'
    local cur opts IFS
    COMPREPLY=()
    cur="${{COMP_WORDS[COMP_CWORD]}}"
    opts=$(python {python_script_path} ${{COMP_CWORD}} ${{COMP_WORDS[@]}})

    COMPREPLY=( $( compgen -W "${{opts}}" -- "${{cur}}" ) )

    return 0
}}