-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
ENH: make guess_datetime_format public #54727
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
Comments
sounds good - fancy making a pull request? |
take |
Hey @joefutrelle , |
Hey @joefutrelle , |
According to the docs, everything in
|
How about adding |
As suggested on Slack by @mroeschke , |
Hi! Is see that @nikhilreddy2002 is assigned to this issue. But I can't see any activity the last week. I would like to start contributing to this project. I'm studying an open source course at University that requires us to get involved in an open source project. So I would love to contribute to Pandas codebase :) And this issue seems like a good start for me @joefutrelle |
Sure go ahead thanks |
👋 Hi there @Birger9, I hope you're doing well. I noticed that this issue hasn't seen any recent activity, and was wondering if you were still working on it? If not, would it be alright if I picked it up? |
feel free to submit a pull request |
ok great - thanks @MarcoGorelli! |
take |
Feature Type
Adding new functionality to pandas
Changing existing functionality in pandas
Removing existing functionality in pandas
Problem Description
Pandas can infer datetime formats when parsing datetimes, but does not provide access to the inferred format via a public API.
Feature Description
Currently,
guess_datetime_format
is inpandas.core.tools.datetimes
which is not public. Exporting it from a non-private module would address the issue.Alternative Solutions
As far as I can tell, no other Python library provides this requested feature.
Additional Context
As discussed in dateutil/dateutil#1138
The text was updated successfully, but these errors were encountered: