I'm trying to extract field value from an ArcGIS Online feature layer using the ArcGIS API for Python.
In ArcGIS Online, the date is displayed like 10/9/2018 10:30 AM (Field type = DATE)
From the Spatially Enabled Panda DataFrame, the date looks like 1.5390954e+18.
When I try to copy the date in a File Geodatabase (InsertCursor) from the DataFrame into a DATE field, I'm getting this error:
RuntimeError: The value type is incompatible with the field type.
How can I convert the 1.5390954e+18 formatted date to a proper date format to be insert in a DATE field?