I've had a script running for a while now, pulling down the latest data. However in the last couple of days the script has been hanging. I have tracked it down to the latest_by="newCasesByPublishDate" portion. If I remove this, it returns all the data, but I am no longer able to just pull in the latest data. Any idea what is going on?
The api call looks like
api = Cov19API(
filters=filter,
structure=structure,
latest_by="newCasesByPublishDate")
I've had a script running for a while now, pulling down the latest data. However in the last couple of days the script has been hanging. I have tracked it down to the
latest_by="newCasesByPublishDate"
portion. If I remove this, it returns all the data, but I am no longer able to just pull in the latest data. Any idea what is going on?The api call looks like