Heads Up :
The post you are writing will appear in a public forum. Please ensure all content is appropriate for public consumption. Review the employee guidelines for the community here.
If using the requests you set the 'startingAfter' parameter.params = {'startingAfter': time.time() - 2592000 # 1 month}This will only get entries up to the maximum allowed. If you store the data in a variable you can set it in a loop to a different ...
You can format it using datetime:>>> tmpDate=datetime.fromtimestamp(<timestamp var>)>>> tmpdate.strftime("%B %d, %Y - %H:%M:%S%p")'June 03, 2019 - 14:55:25PM'