Hello,
Very new to Clarifai, so sorry for the beginner question. Running into a TypeError
while trying to run the example in the quick start with Python 3.5.3:
import settings
from clarifai import rest
from clarifai.rest import ClarifaiApp
app = ClarifaiApp(api_key = settings.clarifai_key) #key from my Clarifai account
produces:
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-1-4ea4078c8f88> in <module>()
4 from clarifai.rest import ClarifaiApp
5
----> 6 app = ClarifaiApp(api_key = settings.clarifai_key)
TypeError: __init__() got an unexpected keyword argument 'api_key'
What am I missing? Thanks!