|
ProcessingTemplate
A basic processing template
Phase-Implementation All processing-plugins are and should be placed inside the folder at /processing/. Every plugin should also have a dedicated section in the file config/processing.conf: for this example if you create a module module/reporting/mymodul.py you will have to append the following section to config/processing.conf: [mymodul] enabled = yes test = 1234 Every additional option you add to your section will be available to your processing plugin in the self.options dictionary. A basic processing plugin could look like:import logging from core.abstracts import Processing Every processing module should contain:
|