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.3.8.tar.gz (30.9 kB view details)

Uploaded Source

Built Distribution

LogTranslate-1.3.8-py3-none-any.whl (34.7 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for LogTranslate-1.3.8.tar.gz
Algorithm Hash digest
SHA256 58ed3b36d66b038bf1316502e884fd50f7e8c228f2b28c014ca962ab74cd9add
MD5 fc26a789eabfdf99661649c3f37e06e8
BLAKE2b-256 868b958d8e9546f4eeec8b5abdd1396d709996db5a88d56ea95ded742703174b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: LogTranslate-1.3.8-py3-none-any.whl
  • Upload date:
  • Size: 34.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for LogTranslate-1.3.8-py3-none-any.whl
Algorithm Hash digest
SHA256 d5262e31c3e46fbc6863516fd0f0fdd27b5bb6302d88f33ee809793f7b1e98ed
MD5 1433104c32a60e87523c74be29ebb2b1
BLAKE2b-256 03fa44821e2aa5c1c1f8cf7e6e3dd5dac22dfdebbaa766f9764589de9f2096ca

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