pipeflow 0.0.4

A lightweight, configuration-driven data pipeline framework
Documentation
pipeline:
  sources:
    - id: webhook
      type: http_server
      config:
        bind: "127.0.0.1:8081"
        path: "/ingest"
        # Optional auth:
        # auth:
        #   type: bearer
        #   token: "secret-token"

  transforms:
    - id: pass_through
      inputs: [webhook]
      outputs: [console_out]

  sinks:
    - id: console_out
      type: console
      config:
        format: pretty