Setting up the Engine of Fesslix#

Introduction#

Before you can use the Python module Fesslix, you need to Import the module in Python and Start the Fesslix engine.

In case you want to load/process Configuration options for Fesslix, you need to do this before starting the engine (see Manually loading configuration options).

Import the module in Python#

To import the Python module Fesslix, execute:

import fesslix as flx

However, before you can actually work with the module, you must Start the Fesslix engine.

Start the Fesslix engine#

The engine of Fesslix is started using flx.load_engine():

flx.load_engine()#
Syntax:

flx.load_engine()

Description:

Starts the engine of Fesslix. Repeated calls to this function will restart the engine of Fesslix.

Returns:

zero for success and a value larger than zero in case of errors

Return type:

int

flx.load_engine()
Random Number Generator: MT19937 - initialized with rand()=1585624299;
Random Number Generator: MT19937 - initialized with 1000 initial calls.
0

Important

Please make sure that all Configuration options and settings related to Logging are handled before starting the engine.

TODO#

Todo

Write this section.