When we have a function like this:
def function(param1, input=""):
...
What´s the variable of that input? How can I use it´s value inside that function?
input is a python builtin_function_or_method class, and should never be used as an attribute this way.
Rename input to xinput or some other name, and change where it is used in the function as well.