Skip to main content

Python wrapper around procolog2msgpack, to convert rock-log- to msgpack-files

Project description

python-pocolog2msgpack

Python wrapper around the docker container of rock-core/tools-pocolog2msgpack

Table of content

about

This project provides a python interface for the pocolog2msgpack tool, to convert Rock's pocolog format to MessagePack.

dependencies

dependencies version
python 3.5+
docker 19.03+

getting started

  1. Install package from pip
    $ pip install pocolog2msgpack
    
  2. Write own converter
    from pocolog2msgpack import Converter
    
    base_path = "data/"
    conv = Converter(base_path=base_path)
    
    1. convert batch of files
      • convert all log-files in data/log/
      • resulting msg-files in same sub-dir, but under data/msg
      log_path = f"{base_path}/log/"
      
      conv.convert_batch(
      	base_path=log_path,
      	file_type="log",
      	cache=True,
      )
      
    2. convert single file
      • convert file data/log/poco.log
      • resulting msg-file in data/msg/poco.msg
      from pocolog2msgpack import X2YFile
      
      file = X2YFile(
      	file_name="data/poco.log",
      	file_type="log",
      )
      
      conv.convert(
      	log_2_msg_file = file,
      )
      

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

pocolog2msgpack-0.1.2.tar.gz (3.9 kB view hashes)

Uploaded Source

Built Distribution

pocolog2msgpack-0.1.2-py3-none-any.whl (10.1 kB view hashes)

Uploaded Python 3

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