Skip to main content

FuncCraft

CI Wheel Documentation Status

FuncCraft is a Python package backed by a C++17 benchmark-function generator for black-box optimization research. It is designed for scalable benchmark suite generation across dimensions: one editable suite specification can generate hundreds, thousands, or practically unlimited numbers of distinct benchmark functions while controlling the constructed optimum location and optimum value.

Install

python -m pip install --upgrade funccraft
python -m pip install numpy scipy minionpy

YAML-First Workflow

Suite YAML is the easiest way to configure FuncCraft:

base_functions: [1, 9, 10, 11, 12]
composition_base_functions: [9, 10, 11, 12]
coordinate_transforms:
  - kind: rotation
    probability: 0.5
  - kind: blockrotation
    probability: 0.5
value_transforms:
  - kind: none
    probability: 0.5
  - kind: osc
    probability: 0.5
compositions:
  - kind: cpmsum
    probability: 0.5
  - kind: dpmsoftmax
    probability: 0.5
    parameters: [0.005]
min_components: 2
max_components: 4
requested_number_of_functions: 500
master_seed: 1
lower_bound: -100
upper_bound: 100
assigned_fopt: 100.0

Load the YAML and evaluate a function:

import funccraft as fc

dimension = 10
function_index = 0

spec = fc.load_suite_spec("my_suite.yaml")
suite = fc.BenchmarkSuite(spec, dimension)
f = suite.function(function_index)

points = [[0.0] * dimension, [1.0] * dimension]
values = f.evaluate(points)
print(values)

The packaged 2026 suite is also YAML-backed and exposed through a shortcut:

import funccraft as fc

dimension = 10
function_index = 0
year = 2026
version = 1
suite = fc.suite_collection(year, version).benchmark_suite(dimension)
values = suite.evaluate(function_index, [[0.0] * dimension])

All evaluations are batched: pass a list of points, not one flat point vector.

Optimization

SciPy:

import numpy as np
from scipy.optimize import differential_evolution
import funccraft as fc

dimension = 10
function_index = 0
year = 2026
version = 1
suite = fc.suite_collection(year, version).benchmark_suite(dimension)
f = suite.function(function_index)
domain = f.domain
bounds = list(zip(domain.lower_bound, domain.upper_bound))

def objective(x):
    return f.evaluate([np.asarray(x, dtype=float).tolist()])[0]

result = differential_evolution(objective, bounds, seed=1, polish=False)
print(result.x, result.fun)

MinionPy:

import funccraft as fc
import minionpy as mpy

dimension = 10
function_index = 0
year = 2026
version = 1
suite = fc.suite_collection(year, version).benchmark_suite(dimension)
f = suite.function(function_index)
domain = f.domain

optimizer = mpy.Minimizer(
    func=f.evaluate,
    x0=[
        [0.0] * dimension,
        [1.0] * dimension,
        [-0.5] * dimension,
    ],
    bounds=list(zip(domain.lower_bound, domain.upper_bound)),
    algo="ARRDE",
    maxevals=10000,
    callback=None,
    seed=None,
    options=None,
)
result = optimizer.optimize()
print(result.x, result.fun)

Mechanism Summary

FuncCraft builds functions from primitive benchmark landscapes, coordinate transforms, value transforms, and composition rules:

f(x) = assigned_fopt + scale_factor * psi(x, z_1(x), ..., z_m(x))

Implemented mechanism families include:

  • 34 primitive base functions, including Sphere, Rosenbrock, Ackley, Rastrigin, Griewank, Schwefel, Katsuura, Levy, BentCigar, HappyCat, HGBat, and StyblinskiTang.
  • coordinate transforms: none, rotation, affine, block-rotation.
  • value transforms: none, power, oscillatory, cosine-zero.
  • compositions: none, cpm-wsum, cpm-power-mean, cpm-level-well, dpm-softmax, dpm-bgsoftmax.

Names are parsed permissively: case, spaces, hyphens, and underscores are normalized before matching.

Exported Manifests

Input YAML is for configuration and editing. Exported YAML is a materialized record of what FuncCraft built:

f.export_spec("function_materialized.yaml")
suite.export_manifest("suite_manifest.yaml")

Exported specs include generated matrices, selected subspaces, DPM centers and biases, assigned optima, scale factors, labels, and metadata.

Links

Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

funccraft-0.1.2-cp314-cp314-win_amd64.whl (645.2 kB view details)

Uploaded CPython 3.14Windows x86-64

funccraft-0.1.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (789.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

funccraft-0.1.2-cp314-cp314-macosx_11_0_arm64.whl (467.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

funccraft-0.1.2-cp314-cp314-macosx_10_15_x86_64.whl (498.5 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

funccraft-0.1.2-cp313-cp313-win_amd64.whl (625.1 kB view details)

Uploaded CPython 3.13Windows x86-64

funccraft-0.1.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (789.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

funccraft-0.1.2-cp313-cp313-macosx_11_0_arm64.whl (466.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

funccraft-0.1.2-cp313-cp313-macosx_10_15_x86_64.whl (498.1 kB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

funccraft-0.1.2-cp312-cp312-win_amd64.whl (625.1 kB view details)

Uploaded CPython 3.12Windows x86-64

funccraft-0.1.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (790.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

funccraft-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (466.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

funccraft-0.1.2-cp312-cp312-macosx_10_15_x86_64.whl (498.1 kB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

funccraft-0.1.2-cp311-cp311-win_amd64.whl (624.7 kB view details)

Uploaded CPython 3.11Windows x86-64

funccraft-0.1.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (786.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

funccraft-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (465.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

funccraft-0.1.2-cp311-cp311-macosx_10_15_x86_64.whl (494.7 kB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

funccraft-0.1.2-cp310-cp310-win_amd64.whl (623.7 kB view details)

Uploaded CPython 3.10Windows x86-64

funccraft-0.1.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (784.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

funccraft-0.1.2-cp310-cp310-macosx_11_0_arm64.whl (464.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

funccraft-0.1.2-cp310-cp310-macosx_10_15_x86_64.whl (493.5 kB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

funccraft-0.1.2-cp39-cp39-win_amd64.whl (639.4 kB view details)

Uploaded CPython 3.9Windows x86-64

funccraft-0.1.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (785.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

funccraft-0.1.2-cp39-cp39-macosx_11_0_arm64.whl (465.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

funccraft-0.1.2-cp39-cp39-macosx_10_15_x86_64.whl (493.4 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

File details

Details for the file funccraft-0.1.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: funccraft-0.1.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 645.2 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for funccraft-0.1.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1a7766f225e9d0147100d05715071398cea699471e3582781005449aaf4f99ec
MD5 6b50353462cf1eeca8ffe065222df749
BLAKE2b-256 097d3030daa18a6b74c867bf4f55f97933c2c0d370914a281c8c5aad0cd49078

See more details on using hashes here.

File details

Details for the file funccraft-0.1.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for funccraft-0.1.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f5b29584fd064d58751f692c186aa73514c87052e69bc887138661615071872f
MD5 981988950d3a94f3b103f1617d2d2697
BLAKE2b-256 305bba4cbe34a0ae3f0f52d280712e954b7b9a3736238de945a02fb69d1cdf6d

See more details on using hashes here.

File details

Details for the file funccraft-0.1.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for funccraft-0.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee5cc648e82d0e7842c3fc4fdc6a6e1be6a2a111cc92ff56040aba51b83d10c2
MD5 a7aea85651d87f7497bfba1d99eeb646
BLAKE2b-256 c1887e39d4331b87eadbb55e2d80c493dead3746fafe91ad4fac20c8de43e2a2

See more details on using hashes here.

File details

Details for the file funccraft-0.1.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for funccraft-0.1.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9fd78e6bc591ea5ce4a79a310b3dbaee84220f496a910c39baa332829be1f094
MD5 50e47ae4f42c3442f38da0a0a6867977
BLAKE2b-256 7d7b25cadc6df0eba4cb53dbbdca415059ee41d4c0889a2403f0c58524836bdc

See more details on using hashes here.

File details

Details for the file funccraft-0.1.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: funccraft-0.1.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 625.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for funccraft-0.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e083e6063adfda1c3fb0b947670c888801af25819e29033d426a68d59141ac34
MD5 8e2020e5783dd0f4a9a87b75dcbcf5fd
BLAKE2b-256 39c0bf6222bee97086c9c0d4f5805f1c095e2079ab72d8b60272b3c8a1851821

See more details on using hashes here.

File details

Details for the file funccraft-0.1.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for funccraft-0.1.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 07d581e47a588678fb0ab560e81670b9b5b5300a798ec6f1b60a5c68e1bacdeb
MD5 a2bb466ec9bc4bbfe3e18acdd06bc0ba
BLAKE2b-256 c8bbc4091b94ee6eff5c82316543b12ced6dd172acb20307f35eb3aec088620d

See more details on using hashes here.

File details

Details for the file funccraft-0.1.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for funccraft-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef3b90a74c833039f564efe0c8317e01c4445c1eae22ec28d416bdfc34bff922
MD5 937d82d6ebfb55040f4ddbcf73686ec0
BLAKE2b-256 1831c0c7454dc353ba2bacd9ad19845adecbf73f7f44523e2fb4a3f67e372ece

See more details on using hashes here.

File details

Details for the file funccraft-0.1.2-cp313-cp313-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for funccraft-0.1.2-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5951267f138eb782ebcb9c6129a43353ecca885b8c5344bccec2f151d8dbc64d
MD5 54a43bed866d8f918aa1d5f6485fce4f
BLAKE2b-256 22d6c1055731d01afad83d874d5d17085463ad417450e0f34ef41b08c8b6d7aa

See more details on using hashes here.

File details

Details for the file funccraft-0.1.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: funccraft-0.1.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 625.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for funccraft-0.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8dcb5564e20e55827ec2d78414156085af61c6a2ced2181b4783a4008928fdc3
MD5 de95f4fe1ce8907e6f0ee26ec8f3a351
BLAKE2b-256 9cea798b20a7969d024641224a36aea2c8456e5f0f6b1469b9d6afa81e17ea93

See more details on using hashes here.

File details

Details for the file funccraft-0.1.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for funccraft-0.1.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3ff67e46637dacef8bf15b649aef3af8cdfd50bd8c41f059630d443cd044f6ca
MD5 acb693a4bdbf50736d707201ed4a5764
BLAKE2b-256 a1ad82019842780c9575e977868096bdce897b046c01f4ab8981f232afaa7122

See more details on using hashes here.

File details

Details for the file funccraft-0.1.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for funccraft-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 52cd997a99847a40bb27714693706c7bea18ed46fc0d9a54a5cf23610e5dccaa
MD5 4d4fc22e0862297459d7deb81acad297
BLAKE2b-256 8ffa2a7d7e7abff5cb38ac03cda9d8a217938841b319bf9323a61a52dc85c0a6

See more details on using hashes here.

File details

Details for the file funccraft-0.1.2-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for funccraft-0.1.2-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 10bdadd541a7de6302ee455de51533c28d7978446ebe1af833a13a2e38fc454c
MD5 3636fe0a6b9b30cf59282c5415563da0
BLAKE2b-256 2f76df936405be2cd43b29cc63b72e4141ea9eedfcab2879b59c3162a09fbcf2

See more details on using hashes here.

File details

Details for the file funccraft-0.1.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: funccraft-0.1.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 624.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for funccraft-0.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a062b41460893ff2e87e46090a38e16ad65aa961a74dfbc351163598cdf9d721
MD5 2cfce0d160b0581f45452a2649cd4269
BLAKE2b-256 d989f940aeae6d065a24ae1fde0c8067a895526346d9d98afeb2c535a5ba66b0

See more details on using hashes here.

File details

Details for the file funccraft-0.1.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for funccraft-0.1.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 070913925f49a34c17d2f276d57ba6a5eab6f904d25a7a2f80586f3066d36ce8
MD5 62497a22d047609b18e5c85fe7963751
BLAKE2b-256 f0f00364c638dfca982ee0fcde7d324825794717debad0c62b721b1f5369ae5e

See more details on using hashes here.

File details

Details for the file funccraft-0.1.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for funccraft-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 33c7e999ffad9342060b38fc6a6a6afceb4342fdc3a6d6b8f20078899fce6cdb
MD5 9a0df9b3ea92fe6fee5ca1e80ad1a87f
BLAKE2b-256 88c1fa8530416862252963198bada052cac7effbb10cf268c3b7996427b84c2c

See more details on using hashes here.

File details

Details for the file funccraft-0.1.2-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for funccraft-0.1.2-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d327a7593467d736828fda838cd35f16f01278136e349d0b340e24a002f4ebfc
MD5 4399a6fab78898cb7a0f11636705f715
BLAKE2b-256 85549c2ec9c48f8f6d683cb6f73c15cb66a6c950f96017bb93281edbd77c865a

See more details on using hashes here.

File details

Details for the file funccraft-0.1.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: funccraft-0.1.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 623.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for funccraft-0.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0f748e632d99887b5101467143597506f1fe24d158fcc233aac40cbac33cf206
MD5 c13e22df6a1eaf7007921bf1e27473d9
BLAKE2b-256 22a62d492b42464bb9d43adaef1c6cf151a777256fe4f514b639e0dc1ef2ca47

See more details on using hashes here.

File details

Details for the file funccraft-0.1.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for funccraft-0.1.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ef1fd1b5910c6dc6fcaf6757a46ce2dfbb4e6da1ade210e073cbae1f76336932
MD5 33b04557d90cea8496af18fa16005657
BLAKE2b-256 2fd6ab8e076a2bffe98439e5a597a63232b101b54e4bf29ec025a99cdc5abe4e

See more details on using hashes here.

File details

Details for the file funccraft-0.1.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for funccraft-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e55ca32aab02df7d3f67906325f35b40ee8c53d0d914635c617d80b1c97731b3
MD5 26174938c929267584b12439ec7bd2b1
BLAKE2b-256 f80cda87e05da2de84e42874e31095b857f1a00d707e10645a3a7e3b025bdf83

See more details on using hashes here.

File details

Details for the file funccraft-0.1.2-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for funccraft-0.1.2-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 72f19f16b9255f022a9600a017f918b9ceffe090a73551dc8bfbb0d9f2cc06cd
MD5 41d24720faeaa1182f038b104a32444b
BLAKE2b-256 7164ea28a591a5830f987290e45e8ffe46e9eea694fc2ce86bfc0fc2b378b3b5

See more details on using hashes here.

File details

Details for the file funccraft-0.1.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: funccraft-0.1.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 639.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for funccraft-0.1.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 47b6426b15e792758cf34e6a049eae8dd6c739e4e15a1434e227b4454d6f6871
MD5 59ef8c0c92fb166bf354a79a18a30242
BLAKE2b-256 f898c12de99c540a7ad32dea55c0205f7e8dc31031ef7afe53ef742dd5c6f86f

See more details on using hashes here.

File details

Details for the file funccraft-0.1.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for funccraft-0.1.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 76e9cdad1ffb17080e6d4fb8a5d0d6d53e16c2dfe1f4cbe7803c2721b7aacb1f
MD5 82c997f37329eefadb4ef4fffeaba3a3
BLAKE2b-256 8e96e9d0e3131c9cad91c6885ad5a61e8d2c962a60d3358a045b76b8264732a5

See more details on using hashes here.

File details

Details for the file funccraft-0.1.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for funccraft-0.1.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0cd6f156e05ef0c3ee54ec4f6d000e880c3a51c7e759a5826975b00003112a5c
MD5 e0445e0e522a0530c99e83cb63065e9a
BLAKE2b-256 9c5e31c0583eeec5113462f364f236f298730a897c9444dce1543393f316f5d3

See more details on using hashes here.

File details

Details for the file funccraft-0.1.2-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for funccraft-0.1.2-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e5a86105cea99eb037f3e3d0641cb90010be8649ef27a5b41d864641a28d7e48
MD5 8055caeb06a27cceaaf03f821301e271
BLAKE2b-256 c3fbad8a1818531a99035ea17eb1d442be488b656fc275547181c8227636f7bd

See more details on using hashes here.

Release history Release notifications | RSS feed

0.3.1

24 files

0.3.0

24 files

0.2.1

24 files

This release

0.1.2 This release

24 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