This repository contains a CLI parser to transform a given file into a different type for instance excel to json.
dluxparser --help
For all supported file types or details of the input/output:
dluxparser --help
dluxparser log2json --help
Clone & install the repository
$ git clone https://github.com/dlux/dluxparser.git
$ pushd dluxparser
$ pip install -e ./
# OR Use provided Vagrant file
$ cd etc
$ vagrant up
$ vagrant ssh
# Verify installation:
$ pip list | grep dluxparser
# Usage
$ dluxparser --help
Package Structure
dluxparser
├── LICENSE
├── README.rst
├── requirements.txt
├── setup.cfg
├── setup.py
├── cmd
│ ├── __init__.py
│ ├── csv2json.py
│ ├── log2json.py
│ └── main.py
├── doc
│ └── source
│ └── README.rst -> ../../README.rst
├── tests
│ ├── __init__.py
│ ├── test_csv2json.py
│ └── test_log2json.py
├── Vagrantfile
└── post_install.sh
Uninstall package
$ pip uninstall dluxparser
Further information about technologies in use: