python-dateutil icon indicating copy to clipboard operation
python-dateutil copied to clipboard

Useful extensions to the standard Python datetime features. This repo tracks the upstream and also contains fixes/patches from https://github.com/cozi/python-dateutil

Results 4 python-dateutil issues
Sort by recently updated
recently updated
newest added

for example: dateutil.parser.parse("blah 12345 04.11.2014 Blah", fuzzy=True) > > > TypeError: 'NoneType' object is not iterable > > > where 12345 is just some random number in terms of the...

make all: ``` python setup.py build Traceback (most recent call last): File "setup.py", line 7, in from setuptools import setup ImportError: No module named setuptools make: *** [all] Error 1...

``` bash >>> import datetime >>> import dateutil >>> dt_str = datetime.datetime(2014, 1, 1, 13).strftime('%p %-I:%M') # 'PM 1:00' >>> dateutil.parser.parse(dt_str) Traceback (most recent call last): File "", line 1,...