Skip to main content

Framework for building modular, event-driven data pipelines

Project description

FinDrum

FinDrum is a lightweight Python framework for building and orchestrating data pipelines with extensible architecture via operators, datasources, schedulers, and triggers.

This repository (FinDrum-Platform) is the core package and is meant to be used as a library. Custom logic (pipelines and extensions) should be defined in external projects.


Installation

pip install findrum-platform

Overview

Findrum pipelines are defined in YAML files and can include:

  • A sequence of operators
  • A datasource (provides data from external source)
  • A scheduler (to run periodically)
  • An event trigger (to respond to changes)

Example structure:

scheduler:
  type: MyCustomScheduler

pipeline:
  - id: step1
    datasource: MyDataSource
    params:
      key: value
  - id: step2
    operator: MyOperator
    depends_on: step1
    params:
      key: value

Interfaces

Findrum provides a minimal interface for each pipeline component. These are abstract base classes that must be subclassed by your custom logic.

Operator – Core processing unit

from findrum.interfaces import Operator

class MyOperator(Operator):
    def run(self, input_data):
        ...

Use when defining a step in a pipeline. Must implement run(input_data). We recommend that it returns a pandas.DataFrame.


DataSource – Step that starts a pipeline

from findrum.interfaces import DataSource

class MySource(DataSource):
    def fetch(self, **kwargs):
        ...

We recommend that it returns a pandas.DataFrame. It feeds the pipeline with data.


Scheduler – Periodic trigger for pipelines

from findrum.interfaces import Scheduler

class MyScheduler(Scheduler):
    def register(self, scheduler):
        # e.g., add job to APScheduler instance
        ...

Implements logic to execute the pipeline on a time interval or schedule.


EventTrigger – React to system/file/bucket events

from findrum.interfaces import EventTrigger

class MyTrigger(EventTrigger):
    def start(self):
        # Starts a file watcher, webhook listener, etc.
        ...

Runs the pipeline when a specific external event happens.


Core Classes

You can import and use the main classes provided by Findrum:

from findrum import Platform
  • Platform: Main entrypoint to manage pipelines, register them, and run based on schedule or events.

CLI Usage: findrum-run

After installing findrum-platform, a CLI tool is available:

Run a pipeline immediately

findrum-run pipelines/my_pipeline.yaml

Use a custom config file for extensions

findrum-run pipelines/my_pipeline.yaml --config config/config.yaml

Enable logging (INFO level)

findrum-run pipelines/my_pipeline.yaml --verbose

Extension Discovery

Findrum requires a config.yaml file with registered class paths:

operators:
  - my_project.operators.MyCustomOperator

datasources:
  - my_project.datasources.MyDataSource

schedulers:
  - my_project.schedulers.MyScheduler

triggers:
  - my_project.triggers.MyTrigger

This lets Findrum dynamically import your components.


Minimal Example For a Non-CLI runner

from findrum import Platform

platform = Platform("config.yaml")
platform.register_pipeline("pipelines/my_pipeline.yaml")
platform.start()

You can also run your pipelines from a python file (like main.py for example) following the example above.


Clean Project Structure

A typical project using Findrum should look like:

your-project/
├── operators/
│   └── my_operator.py
├── schedulers/
│   └── my_scheduler.py
├── triggers/
│   └── my_trigger.py
├── datasources/
│   └── my_datasource.py
├── pipelines/
│   └── my_pipeline.yaml
├── config.yaml
└── main.py (optional)

Getting Started With Examples

To get started quickly, FinDrum includes runnable examples in the examples/ folder.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

findrum_platform-0.2.0.tar.gz (9.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

findrum_platform-0.2.0-py3-none-any.whl (10.3 kB view details)

Uploaded Python 3

File details

Details for the file findrum_platform-0.2.0.tar.gz.

File metadata

  • Download URL: findrum_platform-0.2.0.tar.gz
  • Upload date:
  • Size: 9.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.10

File hashes

Hashes for findrum_platform-0.2.0.tar.gz
Algorithm Hash digest
SHA256 53bdfb6c3bf12a61f730a07012c609ea73f1a95251fbf99367465cc2299de4cc
MD5 463403a7a31ae1e006fde34fd3a3ec5c
BLAKE2b-256 cc5c1baaae7aa11e38988dbe96be81d2f91084249ee508ad51195b82e662bb21

See more details on using hashes here.

File details

Details for the file findrum_platform-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for findrum_platform-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b0bd2f1320a4fe876e7ededfa4ac8b41694d503b278b89509e17c76259ab5c52
MD5 3777d7649c436935ca84716cf602d18a
BLAKE2b-256 fd0f2f8ac7e7598de18f5db6dd8525b82fca8af9764048e66b91659aaaf941ea

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page