TGMtools

TGMtools is Python package that provides general tools for use in other Python projects.

Importing tgmtools functions

The functions within some tgmtools sub packages are available within the top level module.

import tgmtools
from tgmtools import core
from tgmtools import obsfuscate
assert tgmtools.pp == core.pp
assert tgmtools.decode_path == obsfuscate.decode_path

For all examples provided we will assume the following has been imported:

import tgmtools as tgm