Skip to main content

s2mflow

CI Documentation License: MIT Python Version

A high-performance meta-generation framework for lifting single-commodity flow instances into the multicommodity space.

s2mflow is a Python library PyPI with a high-speed Rust core (via PyO3) designed to transform single-commodity minimum-cost flow (MCF) instances into minimum-cost multicommodity flow (MCMCF) instances. It is built for researchers in Operations Research, Mathematical Optimization, and Network Optimization who need to generate reproducible, scalable test data.

The software package s2mflow is presented in SoftwareX:

Felix P. Broesamle, Stefan Nickel, s2mflow: A meta-generator for multicommodity flow instances, SoftwareX, Volume 35, 2026, 102874, ISSN 2352-7110, https://doi.org/10.1016/j.softx.2026.102874.

The theoretical meta-generation framework and mathematical foundations are introduced in:

Felix P. Broesamle and Stefan Nickel. 2026. "On the Single-Multi-Commodity Gap: Lifting Single- to Multicommodity Flow Instances". Optimization Online. Preprint. Available at https://optimization-online.org/?p=34287.

Key Features

  • High Performance: Core logic implemented in Rust for zero-overhead data handling.
  • DIMACS Compatible: Load standard .min single-commodity files.
  • Custom MCMCF Format: Introduces the .mcfmin format for standardized multicommodity data storage.
  • Supply Partitioning Methods:
    • method=1: Equal distribution of supply and demand across commodities.
    • method=2: Intermediate heterogeneity via a beta-binomial allocation. The optional parameter concentration_param controls the concentration (default 3.0).
    • method=0: Randomized, heterogeneous distribution of supply and demand across commodities.
  • Randomizing Capacities and Costs: Functionality for generating randomized commodity-specific capacities and costs for each arc.
  • Zero-Capacity Exclusions: Optionally set a fraction of individual commodity capacities to zero to model excluded arcs, controlled by cap_zero and cap_zero_param.
  • Network Utilities: Support for identifying incoming and outgoing neighboring nodes.

Note: Starting with version 0.2.0, the generation API uses an integer method parameter instead of the boolean is_uniform. The previous version 0.1.22 used is_uniform and is still available.

Installation

Standard Installation

s2mflow provides pre-compiled binary wheels for major platforms. Install directly via pip or poetry:

pip install s2mflow
# or via poetry
poetry add s2mflow

Building from Source

git clone https://github.com/FelixBroesamle/s2mflow.git
cd s2mflow
poetry install -vvv
poetry run maturin develop --release

Running Mathematical Models

To run the below mathematical modeling examples included in this repository out-of-the-box, install the optional solver dependencies:

poetry install --extras solver

Verifying the Installation

After building from source, you can verify that both the Rust core and the Python bindings are functioning correctly by running the test suites:

# Run the Rust test-suite
cargo test

# Run the Python test suite
poetry run pytest
# To run the Python tests in parallel, use:
poetry run pytest -n auto

Running the Example Workflows

The repository includes demo scripts and datasets to help you verify the end-to-end workflow after installation. Sample network instances are provided in the data/ directory. Example scripts are locatet in the examples directory.

# Execute the core s2mflow multicommodity instance generation workflow
poetry run python examples/demo.py

# Execute the below Pyomo + HiGHS optimization workflow
poetry run python examples/solve_instance_pyomo.py

Quick Start

The following snippet illustrates an end-to-end workflow: parsing a standard single-commodity DIMACS .min network file, lifting it into a 3-commodity space with high commodity-demand heterogeneity (Spread), and exporting the output. It also demonstrates how to bypass file formats entirely for direct integration.

import s2mflow

# Input file example contents:
# p min 2 1         (2 nodes, 1 arc)
# n 1 10            (Node 1: supply of 10)
# n 2-10            (Node 2: demand of 10)
# a 1 2 0 10 9      (Arc from 1 to 2, min_cap=0, max_cap=10, cost=9)

# 1. Load a single-commodity network (DIMACS .min format)
network = s2mflow.load_min_instance("input.min")

# 2. Generate multicommodity data for 3 commodities
# method=0 activates the stochastic 'Spread' method
mc_data = s2mflow.generate_multi_commodity_data(
    instance=network,
    num_commodities=3,
    method=0,
    randomize_caps=False,
    randomize_costs=False,
    cap_zero=False,
    seed=512,
)

# 3. Save as a multi-commodity instance (.mcfmin format)
s2mflow.save_multi_commodity_instance("output.mcfmin", network, mc_data)

# Output file (.mcfmin format)
# p min 2 1 3 0 0 0 0 0.0 512       (3 commodities, randomize_caps = False (0), randomize_costs = False (0), method = 0 (Spread), cap_zero = False (0), cap_zero_param = 0.0, seed = 512)
# n 1 10 2 5 3      (Supply of 10 split into supplies: 2, 5, 3)
# n 2-10-2-5-3      (Demand of-10 split into demands: -2,-5,-3)
# a 1 2 0 10 10 9

# 4. Load multicommodity instance back into memory
loaded_mc_data = s2mflow.load_multi_commodity_instance("output.mcfmin")

# 5. Direct usage bypassing formal file formats
data = {1: 126, 2:-126}
spread_multi_data = s2mflow.split_supplies_spread(data, num_commodities=5, seed=512)
# spread_multi_data = {1: [6, 24, 23, 12, 61], 2: [-6,-24,-23,-12,-61]}

uniform_multi_data = s2mflow.split_supplies_uniform(data, num_commodities=5)
# uniform_multi_data = {1: [25, 26, 25, 25, 25], 2: [-25,-26,-25,-25,-25]}

beta_binomial_multi_data = s2mflow.split_supplies_beta_binomial(data, num_commodities=5, concentration_param=3.0, seed=512)

The Extended .mcfmin Format

The library uses a natural extension of the DIMACS .min format to support multiple commodities:

  • Problem Line: p min <num_nodes> <num_edges> <num_commodities> <randomize_caps> <randomize_costs> <method> <cap_zero> <cap_zero_param> <seed = 0>.
    • randomize_caps (0 or 1): Flag indicating if commodity-specific capacities are randomized.
    • randomize_costs (0 or 1): Flag indicating if commodity-specific costs are randomized.
    • method (0, 1, or 2): Partitioning strategy. 0 = Spread, 1 = Uniform, 2 = Beta-Binomial.
    • cap_zero (0 or 1): Flag indicating if zero-capacity exclusions are applied.
    • cap_zero_param (float): Fraction of arcs excluded per commodity.
    • seed: Relevant if method=0 or method=2, or if randomization of commodity-specific capacities or costs is enabled (randomize_caps = 1 or randomize_costs = 1).
  • Node Line: n <node_id> <total_demand> <demand_com_1> <demand_com_2> ... <demand_com_K>.
  • Arc Line: Depending on the randomization flags (randomize_caps, randomize_costs):
    • Default (0, 0): a <from> <to> <low> <cap_total> <cap_total> <cost>.
    • Commodity-specific capacities (1, 0): a <from> <to> <low> <cap_total> <cap_1> ... <cap_K> <cost>.
    • Commodity-specific costs (0, 1): a <from> <to> <low> <cap_total> <cap_total> <cost_1> ... <cost_K>.
    • Commodity-specific capacities and costs (1, 1): a <from> <to> <low> <cap_total> <cap_1> ... <cap_K> <cost_1> ... <cost_K>.

Examples for the .mcfmin Format

Below, we illustrate how the file structure shifts when applying different generation configurations.

Based Single-Commodity Instance (input.min)

# c Base single-commodity instance (input.min)
# p min 4 5
# n 1 17
# n 4 -17
# a 1 2 0 10 10
# a 1 3 0 15 5
# a 2 4 0 10 10
# a 3 2 0 5 20
# a 3 4 0 15 4

Strategy 1: Uniform Partitioning

This strategy distributes the nodal demands as evenly as possible across the 4 commodities.

uniform_mc_data = s2mflow.generate_multi_commodity_data(instance=network, num_commodities=4, method=1, randomize_caps=False, randomize_costs=False, cap_zero=False)

s2mflow.save_multi_commodity_instance("uniform.mcfmin", network, uniform_mc_data)

# --- Output File Contents (uniform.mcfmin) ---
# c Multicommodity flow generated by s2mflow
# p min 4 5 4 0 0 1 0 0.0 0
# n 1 17 5 4 4 4
# n 4 -17 -5 -4 -4 -4
# a 1 2 0 10 10 10
# a 1 3 0 15 15 5
# a 2 4 0 10 10 10
# a 3 2 0 5 5 20
# a 3 4 0 15 15 4

Strategy 2: Spread Partitioning with Randomized Capacities and Costs

This strategy generates high commodity-demand heterogeneity and simultaneously applies uniform noise to individual commodity capacities and arc costs.

spread_rand_caps_costs_mc_data = s2mflow.generate_multi_commodity_data(
    instance=network, num_commodities=4, method=0,
    randomize_caps=True, cap_a=0.6, cap_b=1.0,
    randomize_costs=True, cost_a=0.5, cost_b=2.0,
    cap_zero=True, cap_zero_param=0.05,
    seed=42,
)
s2mflow.save_multi_commodity_instance("spread_full.mcfmin", network, spread_rand_caps_costs_mc_data)

# --- Output File Contents (spread_full.mcfmin) ---
# c Multicommodity flow generated by s2mflow
# p min 4 5 4 1 1 0 0 0.05 42
# n 1 17 4 6 1 6
# n 4 -17 -4 -6 -1 -6
# a 1 2 0 10 0 8 8 10 13 15 6 17
# a 1 3 0 15 10 9 10 11 4 10 6 7
# a 2 4 0 10 9 9 0 7 6 6 18 13
# a 3 2 0 5 4 4 5 0 21 34 23 23
# a 3 4 0 15 15 11 12 12 8 6 6 3

(For demonstrations of isolated randomization configurations, see the examples/demo.py file).

End-to-End Optimization Workflows

The instance attributes exposed by s2mflow integrate seamlessly into algebraic modeling languages and solvers.

Workflow 1: File-Based Parsing with Pyomo & HiGHS (Open-Source)

This workflow loads a serialized .mcfmin file, builds a mathematical program in Pyomo, and solves it using HiGHS.

import pyomo.environ as pyo
import s2mflow

# 1. Load multi-commodity benchmark instance
mc = s2mflow.load_multi_commodity_instance("spread_full.mcfmin")

# 2. Initialize Model
model = pyo.ConcreteModel("MCMCF")

# 3. Decision Variables: 0 <= x_e^k <= u_e^k
def commodity_edge_bounds(m, k, u, v):
    upper_bound = mc.commodity_capacities[(u, v)][k]
    return (0.0, float(upper_bound))

model.flow = pyo.Var(
    mc.commodity_edges,
    domain=pyo.NonNegativeReals,
    bounds=commodity_edge_bounds,
    name="x"
)

# 4. Objective: Minimize total routing cost
model.obj = pyo.Objective(
    expr=sum(
        model.flow[k, u, v] * mc.commodity_weights[(u, v)][k]
        for (k, u, v) in mc.commodity_edges
    ),
    sense=pyo.minimize
)

# 5. Shared Mutual Capacity Constraints
model.shared_caps = pyo.ConstraintList()
for i, (u, v) in enumerate(mc.edges):
    model.shared_caps.add(
        sum(model.flow[k, u, v] for k in range(mc.num_commodities)) <= mc.capacities[i]
    )

# 6. Flow Conservation Constraints
model.flow_balance = pyo.ConstraintList()
incoming, outgoing = s2mflow.get_adjacency_mapping(mc.nodes, mc.edges)

for k in range(mc.num_commodities):
    for node in mc.nodes:
        in_flow = sum(model.flow[k, u, node] for u in incoming.get(node, []))
        out_flow = sum(model.flow[k, node, v] for v in outgoing.get(node, []))
        
        demand = mc.commodity_supply_demand_data[node][k] if node in mc.commodity_supply_demand_data else 0.0
        model.flow_balance.add(out_flow - in_flow == demand)

# 7. Solve
solver = pyo.SolverFactory("highs")
results = solver.solve(model, tee=True)
print(f"[+] Optimal Objective Value: {pyo.value(model.obj)}")

We have provided in examples/solve_instance_pyomo.py a complete workflow / pipeline for running examples on some provided network instances (see data/).

Workflow 2: In-Memory Generation with Gurobi (Commercial Solver)

This example bypasses a file serialization entirely, generating the multicommodity partitions dynamically in-memory. The mathematical model is solved with the gurobipy API for the commercial solver Gurobi (Requires a valid Gurobi license for instances of a certain size).

import gurobipy as grb
import s2mflow

# 1. Load baseline and generate data in-memory
net = s2mflow.load_min_instance("input.min")
mc_data = s2mflow.generate_multi_commodity_data(net, num_commodities=3, method=0, seed=512)

# 2. Initialize Gurobi Model
model = grb.Model("MCMCF")

# 3. Decision Variables
upper_bounds = [mc_data.commodity_capacities[(u, v)][k] for (k, u, v) in mc_data.commodity_edges]
flow = model.addVars(
    mc_data.commodity_edges, 
    lb=0.0, 
    ub=upper_bounds, 
    vtype=grb.GRB.CONTINUOUS, 
    name="x"
)

# 4. Objective Function
model.setObjective(
    grb.quicksum(flow[k, u, v] * mc_data.commodity_weights[(u, v)][k] for (k, u, v) in mc_data.commodity_edges),
    sense=grb.GRB.MINIMIZE
)

# 5. Shared Mutual Capacity Constraints
model.addConstrs(
    (
        grb.quicksum(flow[k, u, v] for k in range(mc_data.num_commodities)) <= net.capacities[i]
        for i, (u, v) in enumerate(net.arcs)
    ), name="Shared_Cap"
)

# 6. Flow Conservation Constraints
incoming, outgoing = s2mflow.get_adjacency_mapping(net.nodes, net.arcs)
for k in range(mc_data.num_commodities):
    for node in net.nodes:
        in_flow = grb.quicksum(flow[k, u, node] for u in incoming.get(node, []))
        out_flow = grb.quicksum(flow[k, node, v] for v in outgoing.get(node, []))
        
        demand = mc_data.supply_partition[node][k] if node in mc_data.supply_partition else 0.0
        model.addConstr(
            out_flow - in_flow == demand, 
            name=f"balance_{k}_{node}"
        )

# 7. Solve
model.optimize()
if model.Status == GRB.OPTIMAL:
    print(f"[+] Optimal Objective Value: {model.ObjVal}")

We have provided in examples/solve_instance_gurobi.py a complete workflow / pipeline for running examples on some provided network instances (see data/).

Benchmarks and Scaling

The following benchmarks were executed on an Intel Core Ultra 7 255U (32 GB RAM) using the standard NETGEN-SR instance family (LEMON graph library). The benchmark script and benchmark data are available in the directories examples/benchmark.py and data/.

Benchmark: Standard vs. Randomized Parameter Generation

  • Standard: Spread partitioning with shared commodity capacities and costs.
  • Randomized: Spread partitioning with randomized capacities and costs for every individual commodity-arc pair.

Benchmark Metrics

  • Base Topology: Instance, Nodes, Arcs, Commodities (K), Sources (Srcs), Demands (Dmds), and Total Demand.
  • Pipeline Phases: Min-cost flow base load (Load Min), parameter generation (Gen), MCF writer (Write), MCF re-load (Load MCF), and total execution time (Total).
Instance Nodes Arcs K Srcs Dmds Tot Demand Load Min (s) Gen: Std / Rand (s) Write: Std / Rand (s) Load MCF: Std / Rand (s) Total: Std / Rand (s)
netgen_sr_08a 256 4,096 2 16 16 16,000.0 0.0014 0.0020 / 0.0028 0.0019 / 0.0024 0.0161 / 0.0117 0.0214 / 0.0184
netgen_sr_08a 256 4,096 5 16 16 16,000.0 0.0014 0.0030 / 0.0031 0.0019 / 0.0049 0.0158 / 0.0190 0.0221 / 0.0284
netgen_sr_08a 256 4,096 10 16 16 16,000.0 0.0014 0.0039 / 0.0048 0.0049 / 0.0050 0.0168 / 0.0135 0.0271 / 0.0246
netgen_sr_08a 256 4,096 20 16 16 16,000.0 0.0014 0.0061 / 0.0068 0.0022 / 0.0096 0.0111 / 0.0173 0.0208 / 0.0350
netgen_sr_08a 256 4,096 30 16 16 16,000.0 0.0014 0.0078 / 0.0101 0.0031 / 0.0131 0.0192 / 0.0150 0.0315 / 0.0396
netgen_sr_08a 256 4,096 50 16 16 16,000.0 0.0014 0.0127 / 0.0142 0.0026 / 0.0217 0.0181 / 0.0216 0.0348 / 0.0589
netgen_sr_10a 1,024 32,768 2 32 32 32,000.0 0.0079 0.0195 / 0.0244 0.0128 / 0.0180 0.0318 / 0.0298 0.0720 / 0.0801
netgen_sr_10a 1,024 32,768 5 32 32 32,000.0 0.0079 0.0277 / 0.0349 0.0132 / 0.0239 0.0406 / 0.0390 0.0894 / 0.1057
netgen_sr_10a 1,024 32,768 10 32 32 32,000.0 0.0079 0.0487 / 0.0504 0.0190 / 0.0407 0.0389 / 0.0465 0.1145 / 0.1455
netgen_sr_10a 1,024 32,768 20 32 32 32,000.0 0.0079 0.0861 / 0.0759 0.0164 / 0.0733 0.0365 / 0.0639 0.1470 / 0.2211
netgen_sr_10a 1,024 32,768 30 32 32 32,000.0 0.0079 0.1130 / 0.1267 0.0160 / 0.0949 0.0412 / 0.0830 0.1781 / 0.3126
netgen_sr_10a 1,024 32,768 50 32 32 32,000.0 0.0079 0.1936 / 0.1788 0.0164 / 0.1651 0.0477 / 0.1051 0.2656 / 0.4570
netgen_sr_11a 2,048 92,682 2 45 45 45,000.0 0.0288 0.0617 / 0.0627 0.0388 / 0.0399 0.0627 / 0.0793 0.1921 / 0.2107
netgen_sr_11a 2,048 92,682 5 45 45 45,000.0 0.0288 0.0872 / 0.0891 0.0390 / 0.0639 0.0755 / 0.0892 0.2305 / 0.2710
netgen_sr_11a 2,048 92,682 10 45 45 45,000.0 0.0288 0.1392 / 0.1526 0.0433 / 0.1123 0.0727 / 0.1201 0.2840 / 0.4138
netgen_sr_11a 2,048 92,682 20 45 45 45,000.0 0.0288 0.2487 / 0.2565 0.0490 / 0.2050 0.0818 / 0.1656 0.4084 / 0.6559
netgen_sr_11a 2,048 92,682 30 45 45 45,000.0 0.0288 0.3355 / 0.3752 0.0481 / 0.2769 0.0931 / 0.2092 0.5056 / 0.8901
netgen_sr_11a 2,048 92,682 50 45 45 45,000.0 0.0288 0.5252 / 0.5722 0.0486 / 0.4520 0.0944 / 0.2797 0.6969 / 1.3328
netgen_sr_12a 4,096 262,144 2 64 64 64,000.0 0.0717 0.1810 / 0.1875 0.0990 / 0.1154 0.1753 / 0.1833 0.5270 / 0.5579
netgen_sr_12a 4,096 262,144 5 64 64 64,000.0 0.0717 0.2492 / 0.3510 0.1025 / 0.2484 0.2692 / 0.2558 0.6926 / 0.9268
netgen_sr_12a 4,096 262,144 10 64 64 64,000.0 0.0717 0.4230 / 0.4720 0.1147 / 0.3328 0.1941 / 0.4041 0.8035 / 1.2806
netgen_sr_12a 4,096 262,144 20 64 64 64,000.0 0.0717 0.7596 / 0.7833 0.1311 / 0.5724 0.2219 / 0.4668 1.1843 / 1.8942
netgen_sr_12a 4,096 262,144 30 64 64 64,000.0 0.0717 1.0187 / 1.0748 0.1365 / 0.8125 0.2406 / 0.5733 1.4675 / 2.5322
netgen_sr_12a 4,096 262,144 50 64 64 64,000.0 0.0717 1.6150 / 1.6995 0.1344 / 1.3241 0.2645 / 0.7686 2.0854 / 3.8638
netgen_sr_13a 8,192 741,455 2 91 91 91,000.0 0.1984 0.5413 / 0.6616 0.2873 / 0.3348 0.5059 / 0.5288 1.5329 / 1.7236
netgen_sr_13a 8,192 741,455 5 91 91 91,000.0 0.1984 0.7915 / 0.8514 0.2969 / 0.5204 0.4610 / 0.6832 1.7477 / 2.2534
netgen_sr_13a 8,192 741,455 10 91 91 91,000.0 0.1984 1.3138 / 1.4663 0.3430 / 0.8733 0.6083 / 1.0841 2.4635 / 3.6221
netgen_sr_13a 8,192 741,455 20 91 91 91,000.0 0.1984 2.3683 / 2.4099 0.3825 / 1.4801 0.6710 / 1.7515 3.6202 / 5.8399
netgen_sr_13a 8,192 741,455 30 91 91 91,000.0 0.1984 3.1107 / 3.3099 0.4015 / 2.0738 0.7936 / 1.9420 4.5042 / 7.5241
netgen_sr_13a 8,192 741,455 50 91 91 91,000.0 0.1984 4.9060 / 5.2603 0.4100 / 3.3010 0.8825 / 2.5859 6.3968 / 11.3457
netgen_sr_14a 16,384 2,097,152 2 128 128 128,000.0 0.8777 1.9554 / 2.9611 0.8183 / 0.9636 2.3140 / 2.0434 5.9653 / 6.8458
netgen_sr_14a 16,384 2,097,152 5 128 128 128,000.0 0.8777 4.2976 / 4.4220 0.8563 / 1.5197 1.6861 / 2.8761 7.7177 / 9.6956
netgen_sr_14a 16,384 2,097,152 10 128 128 128,000.0 0.8777 7.1258 / 8.8457 0.9693 / 2.4662 3.6271 / 4.8378 12.5999 / 17.0274
netgen_sr_14a 16,384 2,097,152 20 128 128 128,000.0 0.8777 12.5907 / 12.2959 1.1096 / 4.6455 2.9332 / 5.2400 17.5112 / 23.0591
netgen_sr_14a 16,384 2,097,152 30 128 128 128,000.0 0.8777 13.9071 / 15.4077 1.1207 / 6.2683 2.3871 / 4.6295 18.2926 / 27.1831
netgen_sr_14a 16,384 2,097,152 50 128 128 128,000.0 0.8777 20.8690 / 24.6117 1.1872 / 10.1748 2.7607 / 7.7355 25.6946 / 43.3997

Note: In the largest randomized case (netgen_sr_14a, $K=50$), the Rust engine generates over 104 million independent random parameters. The generation phase remains highly performant (+3.7 seconds), while the total pipeline time increases primarily due to the physical disk I/O required to write and load the expanded (full) .mcfmin file. All benchmark instances and generation configurations are available in the LEMON Graph Library.

Citing

If you use s2mflow in your research, please use the following preferred citation:

@article{BroesamleNickel:s2mflow,
  title   = {s2mflow: A meta-generator for multicommodity flow instances},
  author  = {Broesamle, Felix P. and Nickel, Stefan},
  journal = {SoftwareX},
  volume  = {35},
  pages   = {102874},
  year    = {2026},
  issn    = {2352-7110},
  doi     = {10.1016/j.softx.2026.102874},
  url     = {https://doi.org/10.1016/j.softx.2026.102874}
}

If you refer to the meta-generation framework and mathematical foundations, please cite the following paper:

@misc{BroesamleNickel:SMCG,
  author       = {Broesamle, Felix P. and Nickel, Stefan},
  title        = {On the Single-Multi-Commodity Gap: Lifting Single- to Multicommodity Flow Instances},
  year         = {2026},
  howpublished = {Optimization Online},
  note         = {Preprint. Available at https://optimization-online.org/?p=34287.},
}

Resources

License

Distributed under the MIT License. See LICENSE for more information.

Download files

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

Source Distribution

s2mflow-0.2.1.tar.gz (8.7 MB view details)

Uploaded Source

Built Distributions

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

s2mflow-0.2.1-cp313-cp313-win_amd64.whl (249.2 kB view details)

Uploaded CPython 3.13Windows x86-64

s2mflow-0.2.1-cp313-cp313-manylinux_2_28_x86_64.whl (394.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

s2mflow-0.2.1-cp313-cp313-manylinux_2_28_aarch64.whl (390.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

s2mflow-0.2.1-cp313-cp313-macosx_11_0_arm64.whl (351.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

s2mflow-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl (352.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

File details

Details for the file s2mflow-0.2.1.tar.gz.

File metadata

  • Download URL: s2mflow-0.2.1.tar.gz
  • Upload date:
  • Size: 8.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for s2mflow-0.2.1.tar.gz
Algorithm Hash digest
SHA256 17dd01121440c1428e21a9f7ea248f96b3a89c2970b1dc207ad5fadbd179e3cb
MD5 047665765ee016a8305326195543af76
BLAKE2b-256 52e2556b637babea8e9f61c7d782859ea7318d9ee7850d4ba357791a85e8d822

See more details on using hashes here.

Provenance

The following attestation bundles were made for s2mflow-0.2.1.tar.gz:

Publisher: release.yml on FelixBroesamle/s2mflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file s2mflow-0.2.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: s2mflow-0.2.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 249.2 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for s2mflow-0.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d18186f2de2bfa8c4850f80574e7d20cd5b732e164ce06b2a42d4d5304a11144
MD5 11879df15970170601ad5e649afdc94a
BLAKE2b-256 728976e11f1dd0d1a465b08e0db56ae66818c5f36579677486f529862f1f8083

See more details on using hashes here.

Provenance

The following attestation bundles were made for s2mflow-0.2.1-cp313-cp313-win_amd64.whl:

Publisher: release.yml on FelixBroesamle/s2mflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file s2mflow-0.2.1-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for s2mflow-0.2.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 24c2cb6d1e95ef4c78267c99a8bf01e09475398b0d85b896b2f91c82359aff90
MD5 e19de620b7dd5fb8a0fb1d781a114767
BLAKE2b-256 85ad2d5c7750c8a3ccd7265074ba9f86f60106c1adee99977a86c37c11d71fef

See more details on using hashes here.

Provenance

The following attestation bundles were made for s2mflow-0.2.1-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: release.yml on FelixBroesamle/s2mflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file s2mflow-0.2.1-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for s2mflow-0.2.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b18b89fd1c9ee820a719b5f58562cd312ff3c65d42f47c7a5cfc87e7c4792b3f
MD5 74fc98ca80d1ee03ab96c5381335ea40
BLAKE2b-256 454e9dad08e988a15821ef9bdf633bdff0eaaf90dba3883bd0c5a134a8404df9

See more details on using hashes here.

Provenance

The following attestation bundles were made for s2mflow-0.2.1-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: release.yml on FelixBroesamle/s2mflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file s2mflow-0.2.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for s2mflow-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c1341ef06e025bba853ffedc9c88d095c4c42a57536e2347c50193657410ed8
MD5 355ad69549fd26fb47e3e955d15fcbb9
BLAKE2b-256 7e28c2fdde9e93798371bc2b3880f2734874534076797aef6fa89e8dabd3a8af

See more details on using hashes here.

Provenance

The following attestation bundles were made for s2mflow-0.2.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on FelixBroesamle/s2mflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file s2mflow-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for s2mflow-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f8f2ddb1b823966ab37ed3f2816196c7c399a27a0d36f5f62fd1a7db16cfffc2
MD5 4575f234207cc2c95bf2fc5192007768
BLAKE2b-256 c6e5ce0ff0d56d5b866917914d28225f226992d43b58aecc56af1c0fb2de3757

See more details on using hashes here.

Provenance

The following attestation bundles were made for s2mflow-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release.yml on FelixBroesamle/s2mflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.2.1 This release

6 files

0.2.0

6 files

0.1.22

6 files

0.1.21

6 files

0.1.20

6 files

0.1.19

6 files

0.1.18

6 files

0.1.17

6 files

0.1.16

6 files

0.1.15

6 files

0.1.14

6 files

0.1.13

6 files

0.1.12

6 files

0.1.11

6 files

0.1.10

6 files

0.1.7

6 files

0.1.6

6 files

0.1.5

6 files

0.1.4

6 files

0.1.3

6 files

0.1.2

6 files

0.1.1

6 files

0.1.0

6 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