Re: Python log parser

2013-04-05 Thread Nac Temha
I could not do using syslog module. On Fri, Apr 5, 2013 at 4:00 AM, rh richard_hubb...@lavabit.com wrote: pydoc syslog That intenough? On Fri, 5 Apr 2013 02:17:55 +0300 Nac Temha nacctte...@gmail.com wrote: Hi, I'm working to parse log files. But I need to help this matter. I want to

Re: Python log parser

2013-04-05 Thread Dave Angel
On 04/05/2013 07:20 AM, Nac Temha wrote: I could not do using syslog module. Please don't top-post. It messes up the history order entirely. What could you not do using syslog? What did you try, and what exception did it throw? Show your code, and either say precisely in what way it

Re: Python log parser

2013-04-05 Thread Grant Edwards
On 2013-04-05, rh richard_hubb...@lavabit.com wrote: On Fri, 5 Apr 2013 02:17:55 +0300 Nac Temha nacctte...@gmail.com wrote: Hi, I'm working to parse log files. But I need to help this matter. I want to parse syslog(wihch program is running, timestamp,host,etc) of system I could not find any

Re: Python log parser

2013-04-05 Thread Grant Edwards
On 2013-04-05, Dave Angel da...@davea.name wrote: On 04/05/2013 07:20 AM, Nac Temha wrote: I could not do using syslog module. What could you not do using syslog? Parse syslog files, presumably -- that's what he asked about. What did you try, and what exception did it throw? I'm rather at

Re: Python log parser

2013-04-05 Thread Nac Temha
On Fri, Apr 5, 2013 at 4:31 PM, Grant Edwards invalid@invalid.invalidwrote: On 2013-04-05, rh richard_hubb...@lavabit.com wrote: On Fri, 5 Apr 2013 02:17:55 +0300 Nac Temha nacctte...@gmail.com wrote: Hi, I'm working to parse log files. But I need to help this matter. I want to parse

Re: Python log parser

2013-04-05 Thread darnold
i know literally nothing about syslogs, but a google search for python syslog parser shows that some people have had success using the pyparsing module: http://www.j-schmitz.net/blog/how-to-parse-a-syslog-logfile-in-python https://gist.github.com/leandrosilva/3651640 hth, Don --