472,145 Members | 1,321 Online
Bytes | Software Development & Data Engineering Community
Post +

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,145 software developers and data experts.

Reg Date string conversion into timestamp function


Dear All,

I have doubt regarding date string to time
conversion function. In Python I cannot find flexible
date string conversion function like php strtotime. I
try to use following type
function
1) parsedate function failed if a date string
like below format "16-MAY-2005 01:26"
2)parsedate_tz function also failed if a date string
is different format

if any one find some other date string conversion
function kindly let me know
__________________________________________________ ______________________
Yahoo! India Matrimony: Find your life partner online
Go to: http://yahoo.shaadi.com/india-matrimony
Jul 19 '05 #1
3 3614
praba kar <pr*********@yahoo.co.in> writes:
Dear All,

I have doubt regarding date string to time
conversion function. In Python I cannot find flexible
date string conversion function like php strtotime. I
try to use following type
function
1) parsedate function failed if a date string
like below format "16-MAY-2005 01:26"
parsedate is documented as trying to parse RFC 2822 dates. Your
example isn't one.
2)parsedate_tz function also failed if a date string
is different format
See the above comments for why.
if any one find some other date string conversion
function kindly let me know


In my experience, it's not very common to have to deal with arbitrary
time/date strings formats. Typically, a source will only provide date
strings in one format, so you only have to be able to deal with that
format in your application. For instance, all dates in email headers
should follow RFC2822, which means the parsedate you found is adequate
for any application dealing with email headers.

Given the wide variety of date strings possible in the wild, a routine
that swallows a such a string and produces a date is going to have to
guess what format is being used - and there are formats that can't be
told apart for some dates. As such, such a routine isn't very
pythonic.

With all that said, you can use strptime to buid a date/time
parser. If you really need to deal with multiple formats from one
source, maybe if you describe your application some help could be
provided.

<mike
--
Mike Meyer <mw*@mired.org> http://www.mired.org/home/mwm/
Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information.
Jul 19 '05 #2
praba kar wrote:
I have doubt regarding date string to time
conversion function. In Python I cannot find flexible
date string conversion function like php strtotime. I
try to use following type
function
1) parsedate function failed if a date string
like below format "16-MAY-2005 01:26"
2)parsedate_tz function also failed if a date string
is different format


Since that's not an RFC2822 date, it shouldn't really be surprising that
a function that is designed to parse RFC2822 dates would fail to parse
it properly...

Have you looked at the mxDateTime package's Parser submodule yet?
http://www.egenix.com/files/python/m...me.html#Parser

-Peter
Jul 19 '05 #3
"praba kar" <pr*********@yahoo.co.in> wrote:

Dear All,

I have doubt regarding date string to time
conversion function. In Python I cannot find flexible
date string conversion function like php strtotime. I
try to use following type
function
1) parsedate function failed if a date string
like below format "16-MAY-2005 01:26"
2)parsedate_tz function also failed if a date string
is different format

if any one find some other date string conversion
function kindly let me know


Check the other thread posted today with almost the same topic
(http://tinyurl.com/bpcg8).

George

Jul 19 '05 #4

This discussion thread is closed

Replies have been disabled for this discussion.

Similar topics

2 posts views Thread by Ben | last post: by
2 posts views Thread by johndcal | last post: by
11 posts views Thread by shsandeep | last post: by
10 posts views Thread by satishrajana | last post: by
5 posts views Thread by E.Bartosiewicz | last post: by
reply views Thread by leo001 | last post: by

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.