Skip to main content

A Python library for translate log from log files

Project description

作用

把日志文件拖动到窗口即可解析日志

使用

安装

pip install LogTranslate

项目根目录 创建 config.py 里面定义字段 translator数组

translators = [SysLogTranslator(tag_translators=[BluetoothTranslator(), CrashPatternTranslator()])]

SysLogTranslator是将文件中每行字符串解析出 tag,time,pid,msg SysLogTranslator的参数 tag_translators 是数组 用来解析 各种tag对应的内容 解析tag的基类有

  • TagPatternTranslator 通过正则匹配tag然后解析

    class CrashPatternTranslator(TagPatternTranslator):
         def __init__(self):
             super().__init__({
                 r"AndroidRuntime|FATAL.*|System.err.*": activity_task_translator
             })
        
         def activity_task_translator(tag, msg): # 这里两个参数
             # todo 这里需要过滤包名
             return Log(translated=" ------ %s > %s----- " % (tag, msg), level=Level.e)
    
  • TagStrTranslator 通过字符串匹配tag然后解析

    class BluetoothTranslator(TagStrTranslator):
        def __init__(self):
            super().__init__({
                "BluetoothAdapter": bluetooth_adapter,
            })
           
        def bluetooth_adapter(msg):# 这里一个参数
            # todo 这里需要过滤包名
            return Log(translated=" ------ %s > %s----- " % (tag, msg), level=Level.e)
    
  • SecStrTagTranslator 解析二级tag

    class SecTagDemoTranslator(SecStrTagTranslator):
        def __init__(self):
            super().__init__("DFJ",
                             lambda string: re.search(r"(?P<tag>.*?) *:(?P<msg>.*)", string),
                             [
                                 SysLogTranslator({
                                     "sec_tag": self.new_tag
                                 })
                             ])
    
        def new_tag(self, tag, msg):# 这里两个参数
            return Log(translated=msg)
    

打包成 exe

1 ,项目根目录创建 ui.py

if __name__ == "__main__":
    app = QApplication(sys.argv)
    window = PyQt6Window()
    window.show()
    sys.exit(app.exec())

2, 执行打包命令

pyinstaller -n [name] --hidden-import config -F -w [-i tools.ico] ui.py

库地址

https://pypi.org/project/LogTranslate/0.1/

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

LogTranslate-1.2.3.tar.gz (22.2 kB view details)

Uploaded Source

Built Distribution

LogTranslate-1.2.3-py3-none-any.whl (25.7 kB view details)

Uploaded Python 3

File details

Details for the file LogTranslate-1.2.3.tar.gz.

File metadata

  • Download URL: LogTranslate-1.2.3.tar.gz
  • Upload date:
  • Size: 22.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for LogTranslate-1.2.3.tar.gz
Algorithm Hash digest
SHA256 ab5233d6ec3e28e65d6a9843480dab242329596f0ad9033c6627b155a6e2dbb7
MD5 3484129e3da0492f343d97989a63ad11
BLAKE2b-256 152e9101d0e7b0bff07a2a981b85dc1bf2a296816352e5f994f220d35697111b

See more details on using hashes here.

File details

Details for the file LogTranslate-1.2.3-py3-none-any.whl.

File metadata

File hashes

Hashes for LogTranslate-1.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 8054dd37b1d9332516bf67755563d1a303c7f205141ebebb8dac1e517aa42441
MD5 1feca73df81774264d5f24a0b947d9a1
BLAKE2b-256 15682b6ab0eb905c73720eb99239385914a6171a8b808bf311f82dd9fae04ecf

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page