Top "Python-dateutil" questions

The dateutil module provides powerful extensions to the standard datetime module, available as an extension module which is compatible with Python 2.3+.

Python dateutil.parser.parse parses month first, not day

I'm using dateutil.parser.parse to format a date from a string. But now it mixes up the month and …

python parsing datetime format python-dateutil
Matplotlib issue on OS X ("ImportError: cannot import name _thread")

At some point in the last few days, Matplotlib stopped working for me on OS X. Here's the error I …

python macos python-2.7 matplotlib python-dateutil
AttributeError when using "import dateutil" and "dateutil.parser.parse()" but no problems when using "from dateutil import parser"

I was playing with the dateutil module in Python 2.7.3. I simply wanted to use: import dateutil dateutil.parser.parse("01-02…

python python-2.7 attributeerror python-dateutil
dateutil 2.5.0 is the minimum required version

I'm running the jupyter notebook (Enthought Canopy python distribution 2.7) on Mac OSX (v 10.13.6). When I try to import pandas (import …

python pandas jupyter-notebook canopy python-dateutil
Python error importing dateutil

I try to execute marathon-lb.py and it throws the next error: Traceback (most recent call last): File "./marathon_lb.…

python python-2.7 python-dateutil
Using python pandas to parse CSV with date in format Year, Day, Hour, Min, Sec

I have several CSV files with the format: Year,Day,Hour,Min,Sec.,P1'S1 2003, 1, 0, 0,12.22, 0.541 2003, 1, 1, 0,20.69, 0.708 2003, 1, 2, 0, 4.95, 0.520 2003, 1, 3, 0,13.42, 0.539 ... (where day, is the day …

python pandas python-dateutil
How to use dateutil.relativedelta in Python 3.x?

Hello I am trying to use relativedelta from the dateutil module. I want to do what is mentioned here, add …

python python-3.x datetime python-dateutil
Converting DDMMYYYY with dateutil.parser

I have the following string input : 24052017. When I try to do: >>>dateutil.parser.parse("24052017") It tells me …

python python-dateutil
Python DateUtil Converting string to a date and time

I'm trying to convert a parameter of type string to a date time. I'm using the dateUtil library from dateutil …

python pyodbc python-dateutil
Python dateutil.parser throws "ValueError: day is out of range for month"

I have a the following code that runs fine with input format like {Year}/{Month} except when it comes to 1994/02 …

python python-dateutil