I am trying to make this code work in my python script (https://github.com/llooker/python_api_samples/blob/master/update_filters_and_run_query.py). I have correctly built a yaml config file with the host, secret, and token. However, in the line
looker = LookApi(host=my_host, token=my_token, secret=my_secret)
I keep getting the error TypeError:init() got an unexpected keyword argument ‘host’
I have included a screenshot, above the screenshot is the line
from lookerapi import LookApi because putting LookerApi did not work.

Host, secret, and token, all have the correct strings in them. I cannot find further documentation on the LookApi function. Please advise.