Try Demo

Turn your notebooks into production-ready applications

NBForge is an open-source platform that allows you to run Jupyter notebooks with parameterized inputs, data pipeline integration, and a clean UI for your stakeholders.

NBForge dashboard interface
Watch Demo (3:24)
3
Autoplay in

What's your biggest data science & analytics pain point?

Identify your challenge and discover how NBForge can help

Repeatedly Creating Reports for Partners

Tired of generating the same reports over and over for stakeholders who can't run your code?

Complex Integrations with Workflow Systems

Struggling to integrate your Jupyter notebooks with production systems and orchestration tools?

Long-Running Data Processing Jobs

Need a better way to handle long-running notebooks with proper monitoring and notifications?

Managing Multiple Notebook Versions

Frustrated with stale notebook copies floating around your team with no central source of truth?

Self-Service Reporting for Product and Engineering Stakeholders

Stop being the bottleneck for running reports. NBForge creates user-friendly forms from your notebook parameters, allowing business stakeholders to run reports themselves with different inputs.

  • Automatic form generation from notebook parameters
  • Shareable links to interactive HTML reports based on your notebook templates.
Parameter form interface

Key Features

Fast, Reliable Notebook Execution

Execute notebooks with blazing speed using containerized environments that provide consistent, scalable, and reliable results every time.

  • Kubernetes-powered execution for scalability
  • Real-time status updates and logs
  • Choose the right amount of CPU and memory for your notebook
  • Execution history and metrics
{
  "resources": {
    "cpu_milli": 2000,
    "memory_mib": 4096
  }
}

Customizable Python Environment

Select specific Python versions and packages for each notebook, ensuring perfect compatibility with your code requirements and dependencies.

  • Choose from Python 3.7 through 3.12
  • Specify exact package versions
  • Environment isolation for each execution
  • Support for custom Docker images
# library requirements at the notebook level
"python_version": "3.10",
"requirements": {
    "pandas": "==2.0.*",
    "matplotlib": ">=3.4.0",
    "scikit-learn": ">=1.4.0"
}

Customizable Parameter Forms

Automatically generate intuitive parameter forms from notebook metadata, allowing non-technical users to run notebooks with different inputs.

  • Rich form controls (dates, numbers, dropdowns)
  • Parameter validation and defaults
  • Easy to implement with simple cell annotations. No html/javascript required!
Parameter form with various input controls

Airflow & Orchestration Integration

Seamlessly integrate with Airflow and other orchestration tools to incorporate notebooks into your data pipelines and automated workflows.

  • RESTful API for programmatic control
  • Service account support for system integrations
  • Webhook callbacks for execution events
  • Status polling and result retrieval
# Airflow DAG example with NBForge integration
from airflow import DAG
from airflow.operators.python import PythonOperator
from datetime import datetime, timedelta
import requests

def run_nbforge_notebook(**context):
    api_url = "https://your-nbforge.com/api/v1/notebooks/execute"
    service_account_key = os.getenv("NBFORGE_SERVICE_ACCOUNT_KEY")
    
    # Get parameters from Airflow context
    execution_date = context['execution_date']
    
    # Configure notebook execution
    payload = {
        "notebook_path": "finance/monthly_report.ipynb",
        "parameters": {
            "report_month": execution_date.strftime('%Y-%m'),
            "include_charts": True
        }
    }
    
    # Execute notebook
    response = requests.post(
        api_url,
        headers={
            "Authorization": f"Bearer {service_account_key}",
            "Content-Type": "application/json"
        },
        json=payload
    )
    
    # Store execution ID for downstream tasks
    execution_id = response.json()["execution_id"]
    context['ti'].xcom_push(key='execution_id', value=execution_id)
    
    return execution_id

# Define DAG
with DAG(
    'monthly_financial_report',
    schedule_interval='@monthly',
    start_date=datetime(2023, 1, 1),
    catchup=False
) as dag:
    
    run_report = PythonOperator(
        task_id='run_financial_report',
        python_callable=run_nbforge_notebook,
        provide_context=True
    )

Flexible Deployment Options

Deploy on major cloud providers (AWS, GCP) or on-premises, with Kubernetes orchestration for optimal resource utilization and scalability.

  • Google Kubernetes Engine (GKE)
  • Amazon Elastic Kubernetes Service (EKS)
  • Self-hosted Kubernetes clusters without any cloud provider dependency, using Postgres and MinIO.
Deployment architecture across cloud providers

Email Notifications

Receive timely email notifications when notebook executions complete or fail, allowing you to focus on other tasks while long-running processes execute.

  • Customizable notification templates
  • Execution status alerts (success, failure)
  • Result links and execution summaries
Email notification with execution details

Shareable HTML Reports

Generate beautiful HTML reports from notebook outputs that can be easily shared with stakeholders, complete with interactive visualizations and formatted results.

  • Interactive charts and dashboards
  • Downloadable in multiple formats (HTML, Notebook with Input Parameters)
Interactive HTML report with charts and tables

Repeatable and Trustworthy Results

Eliminate manual notebook modifications that lead to inconsistent results and errors. Every execution follows the same validated process, ensuring reliability and trust in your outputs.

  • Version-controlled notebooks
  • Reproducible environments
  • Parameter history tracking
Notebook execution history

Have Questions or Need Help?

Max He profile picture

Hi, I'm Max He

Hi there! I created NBForge and would love to chat about how it can work for your data science team. If you have any questions about getting it set up, integrating it with what you already have, or tweaking it to fit your needs, just reach out!

Start Using NBForge Today

Transform how your organization uses Jupyter notebooks