Ben Finney wrote:
>Tim Roberts writes:
>
>> Right, because strptime doesn't support %Z.
>
>Au contraire:
>
>Support for the %Z directive is based on the values contained in
>tzname and whether daylight is true. Because of this, it is
>platform-specific except for recognizing UTC and
You might consider trying dateutil.parser.parse
(http://labix.org/python-dateutil#head-c0e81a473b647dfa787dc11e8c69557ec2c3ecd2)
--
http://mail.python.org/mailman/listinfo/python-list
Thanks,
My script should be platform independent, so I think filtering out time zone
info is better.
--
http://mail.python.org/mailman/listinfo/python-list
Tim Roberts writes:
> Right, because strptime doesn't support %Z.
Au contraire:
Support for the %Z directive is based on the values contained in
tzname and whether daylight is true. Because of this, it is
platform-specific except for recognizing UTC and GMT which are
always know
Junaid P V wrote:
>
>I was trying to parse a date string containing "EDT" time zone
>
>eg: 'Mon Jun 20 14:00:57 EDT 2011'
>
>I tried:
>
>datetime.strptime('Mon Jun 20 14:00:57 EDT 2011', '%a %b %d %H:%M:%S %Z %Y')
>
>But I get error
Right, because strptime doesn't support %Z. You'll have to hand
Junaid P V writes:
> I tried:
>
> datetime.strptime('Mon Jun 20 14:00:57 EDT 2011', '%a %b %d %H:%M:%S %Z %Y')
>
> But I get error
When reporting that you get an error, please give the full error and
traceback.
My mind reading skills are telling me, though, that you're getting a
ValueError bec
I was trying to parse a date string containing "EDT" time zone
eg: 'Mon Jun 20 14:00:57 EDT 2011'
I tried:
datetime.strptime('Mon Jun 20 14:00:57 EDT 2011', '%a %b %d %H:%M:%S %Z %Y')
But I get error
--
http://mail.python.org/mailman/listinfo/python-list
This was a long time ago But just in case anyone googling ever has
the same question, this is what I did (last year). The user just needs
to supply a strftime formatted string, such as "%A, %e %b %h:%M" and
this Class figures out the regex to use on the log entries...
class RegexBuilder(object
That, my friend, is ingenious...!
Thankyou
SM
2009/2/3 andrew cooke
> > > ValueError: unconverted data remains: this is the remainder of the log
>
> > > line
> > > that I do not care about
>
> you could catch the ValueError and split at the ':' in the .args
> attribute to find the extra data.
> > ValueError: unconverted data remains: this is the remainder of the log
> > line
> > that I do not care about
you could catch the ValueError and split at the ':' in the .args
attribute to find the extra data. you could then find the extra data
in the original string, use the index to remove
En Tue, 03 Feb 2009 11:52:07 -0200, Simon Mullis
escribió:
I'm writing a script to help with analyzing log files timestamps and
have a
very specific question on which I'm momentarily stumped
I'd like the script to support multiple log file types, so allow a
strftime
format to be pas
Simon Mullis wrote:
> Hi All
>
> I'm writing a script to help with analyzing log files timestamps and
> have a very specific question on which I'm momentarily stumped
>
> I'd like the script to support multiple log file types, so allow a
> strftime format to be passed in as a cli switch (defau
Hi All
I'm writing a script to help with analyzing log files timestamps and have a
very specific question on which I'm momentarily stumped
I'd like the script to support multiple log file types, so allow a strftime
format to be passed in as a cli switch (default is %Y-%m-%d %H:%M:%S).
When i
Hi.How do I parse a date like "2006-01-12T09:05:08+02:00"?I'd like to parse it into the local time for my server.Thanks.Jacob
--
http://mail.python.org/mailman/listinfo/python-list
14 matches
Mail list logo