Hello, I am using the SDK for the first time and h...
# getting-started
r
Hello, I am using the SDK for the first time and have some doubts. I have a field in an API response which is a date-time but its not in the format like 2002-12-25T00:00, Its "Mar 20, 2018 05:15 PM But in the config file I had mentioned the format like 2002-12-25T00:00. How does the SDK take care of this, should i manually change the date-time format in the function provided?
Copy code
post_process
a
We have data parsing mostly handled by the very good "Pendulum" python library. If you find your date format is not properly parsed, we would appreciate a logged issue (and/or merge request) on the SDK itself. We would like to have very broad compatibility for date formats. So far, we have not had issues but the SDK itself but please let us know if this is successful or not. As you correctly point out, you also have the ability to cleanup any formats using the
Stream.post_process()
method. 👍
r
Thanks will do the same!