Have this section of code
repTab = pd.DataFrame([[reply.author.name, gottem, reply.created_utc]])
repHolder = repHolder.append(repTab)
getting this error
return object.getattribute(self, name)
AttributeError: 'DataFrame' object has no attribute 'append'
Tried to fix it to support the updates since code was last used with this:
repTab = pd.concat((reply.author.name, gottem, reply.created_utc))
repHolder = repHolder.append(repTab)
but that didn't work either and just gave different errors
Not sure how to rewrite it for the current version of pandas