main¶
Bundles common core functions.
There are different init functions to initialize jukebox. jukeboxcore.main.init() should be called once before using the pipeline.
- jukeboxcore.main.init_environment()[source]¶
Set environment variables that are important for the pipeline.
Returns: None Return type: None Raises: None
- jukeboxcore.main.init()[source]¶
Initialize the pipeline so everything works
Initiealizes environment variables and loads the plugins
- jukeboxcore.main.unload_modules()[source]¶
Unload all modules of the jukebox package and all plugin modules
Python provides the reload command for reloading modules. The major drawback is, that if this module is loaded in any other module the source code will not be resourced! If you want to reload the code because you changed the source file, you have to get rid of it completely first.
Returns: None Return type: None Raises: None