Skip to main content

specsolve

CI PyPI Python Docs License: MIT

Solve an optimisation problem written in YAML. Attach your data as tables, and keep the solver loaded for quick updates and warm starts.

specsolve solves mathspec specs. A spec states the math, and mathspec checks it before any data exists. specsolve attaches your tables to the spec, builds the resulting model on polars, and hands it to HiGHS, Gurobi or Xpress.

  • Tables in, tables out. Pass any Arrow table, such as polars, pandas or DuckDB, or a parquet path. Results come back as tables, and an archive keeps the spec, its data and its results as parquet, ready for queries, plots or BI. Tables in, tables out →
  • Sweeps and rolling horizons built in. One call runs scenario sweeps, rolling horizons and myopic pathways over the same spec. Each window is checked against how the model couples before it runs. Sweep a model →
  • Fast, and hard to get wrong. Tables hold only the rows that exist, so a model's topology does not change its cost. The solver stays loaded: update() puts new numbers on it, and keep='progress' warm-starts from the last run. The API is a handful of verbs, with nothing to tune. Benchmarks →
  • Validated against PyPSA. PyPSA's model is one file here, grown rung by rung through storage, unit commitment, multi-period and stochastic runs. All 16 rungs match PyPSA's objective, and 12 match its duals row for row. The PyPSA ladder →

Example

# dispatch.yaml
dimensions:
  snapshot: {dtype: int}
  generator: {dtype: str}
parameters:
  p_max: {dims: [generator]}
  load:  {dims: [snapshot]}
  cost:  {dims: [generator]}
variables:
  p:
    dims: [snapshot, generator]
    where: "p_max > 0"
    bounds: {lower: 0, upper: p_max}
constraints:
  power_balance:
    dims: [snapshot]
    expression: sum(p, over=generator) == load
objective:
  sense: minimize
  expression: sum(p * cost)
import specsolve as sps, polars as pl

generators = ['wind', 'solar', 'gas']
sources = {  # (1)!
    'p_max': pl.DataFrame({'generator': generators, 'value': [100.0, 60.0, 200.0]}),
    'cost': pl.DataFrame({'generator': generators, 'value': [1.0, 2.0, 50.0]}),
    'load': pl.DataFrame({'snapshot': range(6), 'value': [80.0, 120.0, 150.0, 180.0, 140.0, 100.0]}),
    'snapshot': range(6),
    'generator': generators,
}

result = sps.solve('dispatch.yaml', sources, archive='runs/base/')  # (2)!
print(result.objective)  # 1920.0
print(result.primal('p'))  # (3)!
print(result.dual('power_balance'))

base = sps.scan_archive('runs/base/')  # (4)!
print(base.answer.primal('p').group_by('generator').agg(pl.col('value').sum()))
  1. A source is any table: polars, pandas, pyarrow or DuckDB. It can also be a parquet path, such as 'load': 'load.parquet'.
  2. archive= writes the spec, the data and the answer to runs/base/ as parquet files.
  3. A tidy table, with one row per snapshot and generator.
  4. scan_archive reads the archive where it lies. base.sources are parquet paths, so sps.solve(base.spec, base.sources) asks the same question again.

Documentation

The documentation is at https://specsolve.readthedocs.io. What a file may contain is mathspec's language reference.

Installation

pip install specsolve

That brings polars, HiGHS and the language. Add the [gurobi] or [xpress] extra for those solvers. The bridges out of a result, to_pandas and to_dataarray, need pandas and xarray, which you install yourself. To work on specsolve, see CONTRIBUTING.md.

Prior art

The YAML surface comes from Calliope, and linopy supplies the vocabulary, the oracle and every benchmark denominator. Prior art and credit says what came from each.

Status

Alpha, pre-1.0.

Breaking changes land without a deprecation cycle. Pin an exact version if you depend on this, and read the changelog before upgrading. A retired spelling fails at load and names its rewrite. Real models round-trip through solve and are tested against linopy. The accepted surface is not yet frozen.

Licence

MIT.

Release files for specsolve 0.2.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for specsolve 0.2.0
File Size Uploaded
specsolve-0.2.0.tar.gz 181.8 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for specsolve 0.2.0
File Interpreter ABI Platform
specsolve-0.2.0-py3-none-any.whl Python 3 none any Details

Total release size: 394.1 kB

Release files / specsolve-0.2.0.tar.gz

Download URL specsolve-0.2.0.tar.gz
Size 181.8 kB
Tags Source
SHA-256 checksum
How to use checksums
d85b78f91a47682a19779f9f02992957d556c386ccd4b66e9be0c2c7959c157b
BLAKE2b-256 checksum
How to use checksums
fd871acf77deee3b900b2ad16937b16aaaebb4b39062048cca2e7a4778bb99a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / specsolve-0.2.0-py3-none-any.whl

Download URL specsolve-0.2.0-py3-none-any.whl
Size 212.3 kB
Tags Python 3
SHA-256 checksum
How to use checksums
2a007471333c9e575b983f4d91d0f9cfb8716a9714a93c477dd855897ad5f6c3
BLAKE2b-256 checksum
How to use checksums
c35016a740ce8e643925ed76fe864a20611f11eadec8e141b4d4bff60a868805
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.2.0 This release

2 release files

0.1.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page