Metadata-Version: 2.1
Name: plogchain
Version: 0.0.2
Summary: Python Logging based on blockchain
Home-page: https://gg-math.github.io/plogchain
License: ISC
Keywords: logging,security,secure,blockchain,signature
Author: Gg Math
Author-email: code@gmath.io
Requires-Python: >=3.2,<4.0
Classifier: License :: OSI Approved
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Dist: toml (>=0.9,<0.10)
Project-URL: Repository, https://github.com/gg-math/plogchain
Description-Content-Type: text/markdown

# Plogchain

[![Tests Status](https://github.com/gg-math/plogchain/workflows/pythonapp/badge.svg)](https://github.com/gg-math/plogchain/actions)
![Dependencies](https://img.shields.io/badge/dependencies-0-blue.svg)
[![license](https://img.shields.io/badge/license-ISC-blue.svg)](https://github.com/gg-math/plogchain/blob/master/LICENSE)
[![Web page](https://img.shields.io/badge/website-github.io/plogchain-blue.svg)](https://gg-math.github.io/plogchain)


Python Logging based on blockchain.

## Messages get chained
The current log line contains the signature of the previous line with your secret.
* detect lines deletion
* detect logs tampering

## Philosophy
The package is intended to be a **lightweight** util for generating **incorruptible** logs.

For this pupose we rely as much as possible on standard packages.


# Usage

## Install
``` bash
pip install plogchain
```

## Init once in main
``` python
import ChainedLogger

# Obtained after the -vvv option of the program
verbosity = 3
theSecret = ChainedLogger.generateSecret()
ChainedLogger.init(verbosity, theSecret)
```

## Use everywhere with python logging module
``` python
import logging

logging.debug("My message")
logging.info("Some information")
```

## Check your logs integrity afterwards
``` python
import ChainedLogger

aLogChain = [
	"2020-03-30 13:38:00.782|0ec90b9839fdd964|TestChaining.py:20 test_logging_happy_case hello gg",
	"2020-03-30 13:38:00.782|2e3f1b4a7b946fb1|TestChaining.py:21 test_logging_happy_case voila1",
	"2020-03-30 13:38:00.782|10d1ab606618492a|TestChaining.py:22 test_logging_happy_case voila2",
	"2020-03-30 13:38:00.782|805757e144f4e385|TestChaining.py:23 test_logging_happy_case voila5",
	"2020-03-30 13:38:00.782|3bda90b5af77d3fe|TestChaining.py:24 test_logging_happy_case voila4"
]
isValid = ChainedLogger.verify(aLogChain, theSecret)
```

## Apply you own logging format (WIP)
The package is suitable for server logging which context changes from one transaction to another.
Here is an example of setting contextual information throughout the lifecycle of a server:

``` python
# Static formatting at program startup...
ChainedLogger.setFormat(
	# Standard python logging fields
	timestamp = "%(asctime)s.%(msecs)03d",
	fileLine  = "%(filename)s:%(lineno)d",
	message   = "%(message)s",

	# Custom fields
	processId = <current PID>
)

# ... then dynamic formatting with runtime context.
ChainedLogger.updateFormat(transactionId = <current transactionId>
```

# Contributing

## Install
Simply clone and submit pull requests.

## Testing
The unit tests are located in the [test folder](https://github.com/gg-math/plogchain/tree/master/test)
which contains the `__main__.py` entrypoint.

``` bash
# Run all
python test

# Get additional options
python test --help
```

## Delivery
Use to the awesome [Poetry tool](https://python-poetry.org) for this purpose:

``` bash
poetry publish
```

