Tagged Questions
The dateutil tag has no wiki summary.
6
votes
4answers
129 views
How to parse multiple dates from a block of text in Python (or another language)
I have a string that has several date values in it, and I want to parse them all out. The string is natural language, so the best thing I've found so far is dateutil.
Unfortunately, if a string has ...
3
votes
2answers
380 views
Python dateutil parser fails
I am attempting to parse the following date strings obtained from email headers:
from dateutil import parser
d1 = parser.parse('Tue, 28 Jun 2011 01:46:52 +0200')
d2 = parser.parse('Mon, 11 Jul 2011 ...
3
votes
4answers
4k views
How to install python-dateutil on Windows?
I'm trying to convert some date/times to UTC, which I thought would be dead simple in Python - batteries included, right? Well, it would be simple except that Python (2.6) doesn't include any tzinfo ...
3
votes
1answer
585 views
dateutil.rrule.rrule.between() gives only dates after now
from ipython console:
In [16]: b
Out[16]: datetime.datetime(2008, 3, 1, 0, 0)
In [17]: e
Out[17]: datetime.datetime(2010, 5, 2, 0, 0)
In [18]: rrule(MONTHLY).between(b, e, inc=True)
Out[18]:
...
2
votes
1answer
81 views
Parsing a date in python without using a default
I'm using python's dateutil.parser tool to parse some dates I'm getting from a third party feed. It allows specifying a default date, which itself defaults to today, for filling in missing elements ...
2
votes
1answer
94 views
Detecting overlapping date recurrence rules
I'm working in a application that looks like Google Calendar, but with one main difference: events shouldn't have intersections with other events. This means that no two events may share common time, ...
2
votes
5answers
363 views
“Passing Go” in a (python) date range
Updated to remove extraneous text and ambiguity.
The Rules:
An employee accrues 8 hours of Paid Time Off on the day after each quarter. Quarters, specifically being:
Jan 1 - Mar 31
Apr 1 - Jun ...
1
vote
2answers
66 views
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 import parser
myDate_string="2001/9/1 12:00:03"
dt = ...
1
vote
1answer
292 views
dateutil.parser.parse() gives error “initial_value must be unicode or None, not str” on Windows platform
I'm sure there's a really simple solution to this, but I'm still fairly new to Python.
I'm trying to use dateutil.parser.parse() to parse a string with a timestamp in it:
>>> import ...
1
vote
3answers
48 views
how to convert and subtract dates, times in python
I have the following date/time:
2011-09-27 13:42:16
I need to convert it to:
9/27/2011 13:42:16
I also need to be able to subtract one date from another and get the result in HH:MM:SS format. I ...
1
vote
1answer
156 views
how to deal with timezone differences in ical standard records using python?
I'm trying to process a ical recurrence record from the python gdata api.
DTEND: 20110421T190000
params for DTEND:
TZID [u'Europe/London']
DTSTART: 20110421T180000
params for DTSTART:
TZID ...
1
vote
2answers
183 views
What is the replacement for dateutil.parser in python3?
Python 2.x has a great function called dateutil.parser which turns an ISO8601 formatted date into a python datetime value. It's not present in Python 3. What is the replacement?
1
vote
2answers
931 views
Python dateutil.rrule is incredibly slow
I'm using the python dateutil module for a calendaring application which supports repeating events. I really like the ability to parse ical rrules using the rrulestr() function. Also, using ...
1
vote
1answer
227 views
using existing rrule to generate a further set of occurrences
I have an rrule instance e.g.
r = rrule(WEEKLY, byweekday=SA, count=10, dtstart=parse('20081001'))
where dtstart and byweekday may change.
If I then want to generate the ten dates that follow ...
0
votes
1answer
173 views
Python cannot find dateutil.relativedelta
Im trying to run a program using paster serve but I keep getting the error:
ImportError: No module named dateutil.relativedelta
Im running python version 2.6.7 and dateutil version 1.5, so it ...
0
votes
0answers
85 views
Using dateutil rrules, how to specify byhour argument to end before half-past hour?
I am making a calendar django app with the excellent django-schedule lib. In order to determine an event recurrence, I need to generate datetimes that fall within 8:00 and 9:30 every Friday and ...
0
votes
2answers
153 views
Installing dateutil
I'd like to install the most recent version of dateutil, to work with Python 3.1. My systems default version of Python is 2.6.1, so I run scripts written with Python 3.x syntax by adding the following ...
0
votes
1answer
446 views
DateUtils.parseDate exception
I can't seem to get this to work, it says Unknown pattern character - "T"
Unable to parse the date 2011-07-22T12:01:34.9455820
Date theDate = DateUtils.parseDate(notif.dateStr, new ...