Skip to content

Releases: rkoschmitzky/logmole

0.9.1

22 Feb 11:17
Compare
Choose a tag to compare

Bugfix release

LogContainer was matching against each character in place of each line when initialized with string data instead of a filepath.

0.9.0

21 Feb 22:13
Compare
Choose a tag to compare
0.9.0 Pre-release
Pre-release

Python2/3 Compatibility

logmole now runs in Python2 and Python3.

API additions

In addition to intitializing a LogContainer via a filepath it now also supports any file content as string directly.

log = LogContainer("mother: Jane\nfather: Peter\nchild1: Dave\nchild2: Lea")

Breaking Changes

The extensions module was removed. Any future extension shall be maintained via its own project.

0.8.0

01 Jul 14:30
Compare
Choose a tag to compare
0.8.0 Pre-release
Pre-release

Extensions

  • elaborated version of the ArnoldLogContainer

API additions

  • addition of new helpful type objects:
    • a datetime.time based TimeType
    • TwoDimensionalNumberArrayType
    • NoneType
  • improvements of KeyValueType
    • possibility to prefix matched keys
  • non json encodable will decoded as string

API fixes

  • improved type inference for type float, int and None
  • corrected inheritance behaviour in TypeAssumptions