An open API service indexing awesome lists of open source software.

https://github.com/miner34dev/minetest-log-data-extractor

A python module that extracts data from Minetest logs.
https://github.com/miner34dev/minetest-log-data-extractor

minetest python pythonmodule

Last synced: 5 months ago
JSON representation

A python module that extracts data from Minetest logs.

Awesome Lists containing this project

README

          

# MineTest Log Data Extractor
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)

MT log data extractor is a python module that extracts data from Minetest logs.
# License
Minetest log data extractor is a Open Source project under the MIT License (see [LICENSE](./LICENSE) file for details).
# Installing
Currently, there is no pip package for this module, so you will need to install it manually:
- Download this module from [here](https://github.com/Miner34dev/Minetest-log-data-extractor/archive/refs/heads/main.zip)
- Extract the archive
- go into the extracted folder using ```cd```
- copy mt_log_data_extractor.py into your python installation's site-packages folder
# Getting started
Import this module:
```python3
from mt_log_data_extractor import import_mt_log
```
Now, to get your data, use:
```python3
import_mt_log(mt_log_path)
```