You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 3, 2023. It is now read-only.
import typeform
form = typeform.Form(api_key='*********', form_id='***')
responses = form.get_responses()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Python34\lib\site-packages\typeform\form.py", line 62, in get_responses
return FormResponses(stats=resp.get('stats'), responses=resp.get('responses'), questions=resp.get('questions'))
File "C:\Python34\lib\site-packages\typeform\form_response.py", line 81, in __init__
FormQuestion(**question) for question in questions
File "C:\Python34\lib\site-packages\typeform\form_response.py", line 81, in <listcomp>
FormQuestion(**question) for question in questions
TypeError: __init__() got an unexpected keyword argument 'group'
I keep getting this error. I tried installing using pip as well as installing from source.