We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In current version (commit ae31f38), phrases with explicit minutes or seconds are being interpreted as hours:
>>> from timefhuman import timefhuman >>> timefhuman('in five hours') datetime.datetime(2021, 6, 3, 5, 0) >>> timefhuman('in five minutes') datetime.datetime(2021, 6, 3, 5, 0) >>> timefhuman('in five seconds') datetime.datetime(2021, 6, 3, 5, 0)
results should be different for each.
current release (0.0.5) has no results for these phrases.
The text was updated successfully, but these errors were encountered:
also, number coverage is inconsistent:
>>> timefhuman('in five minutes') datetime.datetime(2021, 6, 3, 5, 0) >>> timefhuman('in twenty minutes') []
Sorry, something went wrong.
No branches or pull requests
In current version (commit ae31f38), phrases with explicit minutes or seconds are being interpreted as hours:
results should be different for each.
current release (0.0.5) has no results for these phrases.
The text was updated successfully, but these errors were encountered: