durations
durations copied to clipboard
A Python durations parsing library
Results
4
durations issues
Sort by
recently updated
recently updated
newest added
Adding description to setup.py
Ie, there are cases where I find it much easier to write "1.5 hours" rather than "1 hour 30 minutes".
enhancement
User should be able to convert durations to datetime and timedelta using operations such as `from`, `from_now`, `ago`. Example: ``` python import timedelta from datetime import datetime >>> Duration('1d').from_now(as=timedelta) timedelta(days=1)...
enhancement