I am trying to figure out how to get the Contacts from Hubspot into a pandas Dataframe using the Private Apps key. I can access the contacts but it keeps telling me the object is not subscriptable. This is my coe thus far.
```
access_token_key_contacts = ‘xxxxxxxxxxxxxxxx’
api_client_contacts = HubSpot(access_token= access_token_key_contacts)
Contacts = api_client_contacts.crm.contacts.get_all()
Contact_lst = []
for contact in Contacts:
Contact_lst.append(contact)
```
When this is printed out, I get a list of Contacts but then I can’t access this information like a normal list of dictionaries in python.
I am not sure what to do at this point. Any and all help will be much appreciated.