PJPipeline

This is the overall pipeline class. Assuming you have your config files set up correctly, then you can run through the full pipeline in just a couple of line:

import pjpipe

pjp = pjpipe.PJPipeline(
    config_file=config_file,
    local_file=local_file,
)
pjp.do_pipeline()

API

class pjpipe.PJPipeline(config_file=None, local_file=None)[source]

Overall wrapper for pjpipe.

Parameters:
  • config_file – Either string to location of config.toml file, or dict of preloaded toml

  • local_file – Either string to location of local.toml file, or dict of preloaded toml

do_pipeline()[source]