Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Automatically parse datetimes with 12-hour time (AM/PM) #21017

Open
daviewales opened this issue Jan 30, 2025 · 0 comments
Open

Automatically parse datetimes with 12-hour time (AM/PM) #21017

daviewales opened this issue Jan 30, 2025 · 0 comments
Labels
A-temporal Area: date/time functionality enhancement New feature or an improvement of an existing feature

Comments

@daviewales
Copy link

daviewales commented Jan 30, 2025

Description

Polars currently doesn't support automatically parsing datetimes with 12 hour time using AM/PM.
For example, the following datetimes are not automatically parsed:

1/02/2024 11:01:21 PM
01/02/2024 9:00:00 am
2024-02-01 9:00:00 AM

It's possible to specify 12 hour formats as follows:

%Y-%m-%d %I:%M:%S %P  # 2024-01-01 11:00:00 AM
%Y-%m-%d %I:%M:%S %p  # 2024-01-01 11:00:00 am

i.e. The same as other formats, but replace %H with %I, and add %P or %p to the end for the AM/PM marker.

I'm guessing this could be fixed by extending the list of supported formats here:
https://github.com/pola-rs/polars/blob/main/crates/polars-time/src/chunkedarray/string/patterns.rs

Is there a reason not to automatically parse these datetime styles?

@daviewales daviewales added the enhancement New feature or an improvement of an existing feature label Jan 30, 2025
@MarcoGorelli MarcoGorelli added the A-temporal Area: date/time functionality label Jan 30, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-temporal Area: date/time functionality enhancement New feature or an improvement of an existing feature
Projects
None yet
Development

No branches or pull requests

2 participants