Skip to content

TalbotKnighton/trendify

Repository files navigation

Trendify

trendify: Efficient Plotting and Table Building

PyPI version Python versions Tests & Release Status Coverage Ruff Pydantic v2 License Documentation


Installation

Install the package via your preferred manager:

uv add trendify

or with pip:

pip install trendify

Core Features

  • Built to scale: process thousands of runs without holding every run's data in memory at once. Throughput stays flat whether you have dozens of runs or tens of thousands.
  • Typed records, no migrations: points, traces, tables, and histograms are validated Pydantic models. Add your own record types anytime without writing a schema migration.
  • Parallelizable: trendify generate can fan your processing function out across multiple CPU cores with --n-procs, with multiprocessing-safe logging that funnels every worker's output through a single queue.
  • Static assets or a live dashboard: render tagged data straight to Matplotlib images and CSV tables with trendify render, or launch an interactive FastAPI dashboard with trendify viewer to browse tags, tables, and interactive plots in the browser.

Why use trendify?

  • Scalable. Throughput stays flat whether you're processing dozens of runs or tens of thousands.
  • Memory efficient. Each run is processed once and cached on disk, nothing needs to stay open or held in memory for the whole sweep. This is critical for processing large amounts of data with less memory than is available when batch processing.
  • Flexible output. Render static Matplotlib images and CSV tables for a report, or browse the same data interactively in a live dashboard.

About

No description, website, or topics provided.

Resources

License

Stars

1 star

Watchers

1 watching

Forks

Packages

 
 
 

Contributors