Skip to main content

Stratax

Stratax is a modern scientific computing library built around modern C++20 containers, shape metadata, and element-wise array operations. The core library is header-first, with Python bindings powered by pybind11.

The project is still young: vectors, matrices, tensors, shape/stride metadata, indexing, slicing, reshaping, conversions, creation helpers, printing, comparison, and arithmetic are active. Linear algebra, calculus, random, and statistics modules are currently reserved API areas.

Features

  • C++20 Vector, Matrix, and Tensor containers
  • Contiguous Buffer storage with shape and stride metadata
  • Bounds-checked at(...) and multidimensional operator(...) access
  • Negative indexing and reverse slicing in both the C++ and Python APIs
  • Element-wise arithmetic with NumPy-style broadcasting, plus comparison operators
  • Reshape, flatten, slicing, and container conversion helpers
  • Tensor creation helpers such as zeros, ones, full, and identity
  • Axis reductions with optional keepdims and negative-axis support in the Python API
  • Stream printing for vectors, matrices, tensors, shapes, and strides
  • Python bindings for Shape, Vector, Matrix, and Tensor
  • Python free functions for conversions and tensor creation helpers
  • Doxygen API documentation

Quick Start

C++

#include <stratax.h>
#include <iostream>

int main()
{
    stratax::Vector<double> a{1.0, 2.0, 3.0};
    stratax::Vector<double> b{4.0, 5.0, 6.0};

    auto c = a + b;

    std::cout << c << '\n'; // [5, 7, 9]
}

Python Package

from stratax import Vector

v = Vector([1.0, 2.0, 3.0, 4.0])

print(v[::-1].tolist())

# [4.0, 3.0, 2.0, 1.0]

Python bindings expose double-based Shape, Vector, Matrix, and Tensor types plus free-function conversions (to_vector, to_matrix, to_tensor) and creation helpers (zeros, ones, full, identity). The API supports negative indexes, slice steps (including reverse slices), and tolist() for quick inspection.

Axis reductions are available through Python reduction helpers (sum, prod, max, min, argmax, argmin, mean, var, std), including keepdims=True for shape-preserving reductions and negative-axis indexing (for example axis=-1 for the last dimension).

The C++ umbrella header also provides a flat public facade for common APIs, such as stratax::Vector, stratax::Shape, stratax::zeros, and stratax::sum, with grouped module aliases like stratax::reductions for specialized calls.

Installation

Python

pip install stratax

C++ Headers

Stratax is header-first for C++. Include the repository include/ directory in your build and include the umbrella header:

#include <stratax.h>

For a small CMake target, wire the include directory and C++ standard like this:

target_include_directories(my_app PRIVATE path/to/stratax/include)
target_compile_features(my_app PRIVATE cxx_std_20)

Build & Development

Requirements

  • C++20 compiler
  • CMake 3.20 or newer
  • Python 3.10 or newer for bindings
  • pybind11 2.12 or newer
  • scikit-build-core 0.10 or newer
  • pytest 8 or newer for Python tests
  • Doxygen 1.9 or newer for API docs

Build From Source

Configure and build with CMake:

cmake -S . -B build
cmake --build build

For editable Python installation, use pip from an environment with the build dependencies available:

python -m pip install -e .

Run Tests

The C++ tests live under tests/cpp/ and are registered with CTest through GoogleTest:

cmake -S . -B build
cmake --build build
ctest --test-dir build --output-on-failure

The Python tests live under tests/python/ and use pytest:

python -m pytest tests/python

Documentation

Repository Layout

Project Status

Stratax is still evolving. The current container, indexing, slicing, reshape, conversion, creation, printing, arithmetic, comparison, and reduction APIs are usable, but naming and edge-case behavior may still change before a stable 1.0 release. Linear algebra, calculus, random, statistics, and file I/O are reserved or planned areas.

API Status

Feature C++ Python
Shape, Vector, Matrix, Tensor Available Available
Negative indexing Available Available
Slicing Copy-based Copy-based
Arithmetic and comparison Available Available
Bitwise operators Available for integral containers Not yet exposed
Creation helpers Available Available
Conversions Available Available
Reshape and flatten Available Available
Reductions Available Available, with keepdims
Broadcasting arithmetic Available Available through the core operators
Linear algebra Planned Planned

Implemented

  • Core storage and metadata: Buffer, Shape, Strides, Slice
  • Containers: Vector, Matrix, Tensor
  • Operations: broadcasted arithmetic, comparison, indexing, negative indexing, reshape, slicing
  • Container helpers: creation and conversions
  • I/O: stream printing
  • Python bindings and Python API: Shape, Vector, Matrix, Tensor, conversion free functions, creation free functions, negative indexing, reverse slicing

Roadmap

  • Python broadcasting regression tests
  • Logical operations
  • Linear algebra algorithms
  • Calculus helpers
  • Random sampling and distributions
  • Statistics routines
  • CSV and binary I/O

Contributing

Contributions, bug reports, and feature requests are welcome through GitHub Issues and Pull Requests. See Contributing for development notes and Releasing for release checklist guidance.

License

Stratax is licensed under the MIT License.

Download files

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

Source Distribution

stratax-0.3.1.tar.gz (661.6 kB view details)

Uploaded Source

Built Distributions

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

stratax-0.3.1-cp315-cp315t-win_amd64.whl (428.5 kB view details)

Uploaded CPython 3.15tWindows x86-64

stratax-0.3.1-cp315-cp315t-win32.whl (384.6 kB view details)

Uploaded CPython 3.15tWindows x86

stratax-0.3.1-cp315-cp315t-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

stratax-0.3.1-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (288.1 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

stratax-0.3.1-cp315-cp315t-macosx_11_0_arm64.whl (225.5 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

stratax-0.3.1-cp315-cp315-win_amd64.whl (417.4 kB view details)

Uploaded CPython 3.15Windows x86-64

stratax-0.3.1-cp315-cp315-win32.whl (375.3 kB view details)

Uploaded CPython 3.15Windows x86

stratax-0.3.1-cp315-cp315-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

stratax-0.3.1-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (281.6 kB view details)

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

stratax-0.3.1-cp315-cp315-macosx_11_0_arm64.whl (206.4 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

stratax-0.3.1-cp314-cp314t-win_amd64.whl (428.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

stratax-0.3.1-cp314-cp314t-win32.whl (385.1 kB view details)

Uploaded CPython 3.14tWindows x86

stratax-0.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

stratax-0.3.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (286.8 kB view details)

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

stratax-0.3.1-cp314-cp314t-macosx_11_0_arm64.whl (225.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

stratax-0.3.1-cp314-cp314-win_amd64.whl (417.4 kB view details)

Uploaded CPython 3.14Windows x86-64

stratax-0.3.1-cp314-cp314-win32.whl (375.6 kB view details)

Uploaded CPython 3.14Windows x86

stratax-0.3.1-cp314-cp314-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

stratax-0.3.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (281.6 kB view details)

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

stratax-0.3.1-cp314-cp314-macosx_11_0_arm64.whl (206.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

stratax-0.3.1-cp313-cp313-win_amd64.whl (404.6 kB view details)

Uploaded CPython 3.13Windows x86-64

stratax-0.3.1-cp313-cp313-win32.whl (366.8 kB view details)

Uploaded CPython 3.13Windows x86

stratax-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

stratax-0.3.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (281.6 kB view details)

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

stratax-0.3.1-cp313-cp313-macosx_11_0_arm64.whl (205.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

stratax-0.3.1-cp312-cp312-win_amd64.whl (404.6 kB view details)

Uploaded CPython 3.12Windows x86-64

stratax-0.3.1-cp312-cp312-win32.whl (366.7 kB view details)

Uploaded CPython 3.12Windows x86

stratax-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

stratax-0.3.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (281.7 kB view details)

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

stratax-0.3.1-cp312-cp312-macosx_11_0_arm64.whl (205.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

stratax-0.3.1-cp311-cp311-win_amd64.whl (398.7 kB view details)

Uploaded CPython 3.11Windows x86-64

stratax-0.3.1-cp311-cp311-win32.whl (361.0 kB view details)

Uploaded CPython 3.11Windows x86

stratax-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

stratax-0.3.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (271.7 kB view details)

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

stratax-0.3.1-cp311-cp311-macosx_11_0_arm64.whl (199.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

stratax-0.3.1-cp310-cp310-win_amd64.whl (397.5 kB view details)

Uploaded CPython 3.10Windows x86-64

stratax-0.3.1-cp310-cp310-win32.whl (360.2 kB view details)

Uploaded CPython 3.10Windows x86

stratax-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

stratax-0.3.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (270.5 kB view details)

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

stratax-0.3.1-cp310-cp310-macosx_11_0_arm64.whl (197.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file stratax-0.3.1.tar.gz.

File metadata

  • Download URL: stratax-0.3.1.tar.gz
  • Upload date:
  • Size: 661.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for stratax-0.3.1.tar.gz
Algorithm Hash digest
SHA256 fa41767a91e620ad7cc360f1822565091d7b6393fd66bb4bb1aff8cf8075dbff
MD5 ff640558c1c7385999ec014b99d2b72e
BLAKE2b-256 2993cff56b34abaf8a4a77eadd6457b73f3d38bd1f6cef3f5331be22e5bdd501

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1.tar.gz:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: stratax-0.3.1-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 428.5 kB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for stratax-0.3.1-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 62fddf5d18c9bd0a413d122662359f7d1f0891fe788dbba8b5a8664bdf3d598f
MD5 32e6592627ba98bd50071dbd558cfd9e
BLAKE2b-256 55affb6d3f4578c8a47e8f4c53806a819f5d58f6f9f5fd67e787a37d24f08ff8

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp315-cp315t-win_amd64.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp315-cp315t-win32.whl.

File metadata

  • Download URL: stratax-0.3.1-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 384.6 kB
  • Tags: CPython 3.15t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for stratax-0.3.1-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 be410e050be42b649d1cc2a11b67ec84044748a05cb21354ffffdf28aeb7704d
MD5 a60d5630642933f9bdd164f56cae8a86
BLAKE2b-256 2076da2f2d99b1d0c81e729fb72f3a69c80befced4099cc3415b06791b014db6

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp315-cp315t-win32.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stratax-0.3.1-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fef5781278f14eea5620c3a8fd84cb5b694fb7063afebe69eb38bf6881c96c5d
MD5 a80a8ee38fa3b80b74eed56d95bbdd64
BLAKE2b-256 10f64328d223aa570f04f06c4a72bdf9a8c9e2881600b52508b87f5cf79ee0d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp315-cp315t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stratax-0.3.1-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 69d26c6756494403379bfecbbac684ed6fac2640c2a1d49174142802889d3835
MD5 5b51dacf7f2da47d16a5eface18c4ae1
BLAKE2b-256 fb4efc54ab34084a963a4e6ee926e363f933930284e97aeb2aeb5538116fd7ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stratax-0.3.1-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f56c9b97c08ccd93f84ae1f8371a73a785578c71eaf27485cd0b8754b0030192
MD5 b37fcb67753b6d161e7b33ddf5b3c6ab
BLAKE2b-256 6b4376d0d887f0221de987372b712883648c4bafbe23409e8d2a2bc358a9051a

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp315-cp315t-macosx_11_0_arm64.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: stratax-0.3.1-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 417.4 kB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for stratax-0.3.1-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 ac316ed6409dd02ec291559217ef0322666f29c9471c46cae3c168c03877bc7d
MD5 d30823e6762176dd00de21e7a88971b2
BLAKE2b-256 64035ea431369a9790ccd6ba2b3236e71ba41a8c91fdb69ed53c9e65b322a16d

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp315-cp315-win_amd64.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp315-cp315-win32.whl.

File metadata

  • Download URL: stratax-0.3.1-cp315-cp315-win32.whl
  • Upload date:
  • Size: 375.3 kB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for stratax-0.3.1-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 34de35bf185d3e3ec26b36e9701795fee6a65d16132497476ce65114ad035011
MD5 e1283b2524a7eeb168bf2577a2cfd64a
BLAKE2b-256 1b8fe7c9c305ee30244493c3dc0cf9ad371c807fd20c843297de5eda4aad082a

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp315-cp315-win32.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stratax-0.3.1-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 20147bf2267456c33072322924b470fa98da7cf69477189e968d1a8e1eb87ba0
MD5 c71c7499f25cfbe4f947b9ad03a81d66
BLAKE2b-256 9b46bf26f1f640c8717c4e8baa48ee983ce31483dd9b30f8c6311625c589f36f

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp315-cp315-musllinux_1_2_x86_64.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stratax-0.3.1-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0d3f8666987f29372c22ea06353688823d6a511ffc8bb67ed6655da29b0335cd
MD5 68b51987cdb08fe5ee987f1a7c7727cb
BLAKE2b-256 fb780e825b6b285c715725d77ef1dd871de6279815b993edff680a42118a4ca3

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stratax-0.3.1-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e93e3e896916cfe9f285215821a5a57a9a2d3969cfa40c4fcacef8d79f40de3d
MD5 2ee3c83da8afffe443ba71df92c8c816
BLAKE2b-256 4243a6f025f4c8236b4248ec2b627a39cc059cea736f606fafd4ec540cc8f8ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp315-cp315-macosx_11_0_arm64.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: stratax-0.3.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 428.6 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for stratax-0.3.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 3984ff45edbed69d835594211609f8f835f25e0b090e12ebe0f22207daf91211
MD5 e79cc1a65aa1d4cf9378a92511360709
BLAKE2b-256 3d4e8ad9f34c8df3431d3dc7446880ad67feefbe0a3506f5b4a62884e92b453e

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp314-cp314t-win_amd64.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp314-cp314t-win32.whl.

File metadata

  • Download URL: stratax-0.3.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 385.1 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for stratax-0.3.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 fcd91f34d90229ca80b1c5a52cfd2296314afa2664ac5f75689a8adf373bf7b3
MD5 0dfac68e0bfef1b60a57c204efa219a0
BLAKE2b-256 fb83cc88e482e741be0423848ee802c7e7e430c2e4262bb1b39ca4da2f6ae98b

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp314-cp314t-win32.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stratax-0.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0cdcac770f1d0ca5bcaf5dde682161d58385ecf0e2f9a8fb5f478b9062dbd3fc
MD5 8ef48889d55f2d0da61c094656329fb6
BLAKE2b-256 4f5d8e2f18cb51c90e4a69055c70f6920da8bde9f59b0d7c0f63a26b74892e4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stratax-0.3.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b8eb1a630f488971b7abe48c8f0610650869068fa3096d4366885eb39bd0341d
MD5 18e6a8913419da48ba6f6aa4b0157bfd
BLAKE2b-256 98cd554b1a9d7c19190b64e7618fdc8caba7ac78852d6c94723441bf56431560

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stratax-0.3.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ceb29105b8e06aee0e3dad1aa76fce0586872259bf67c43b241cd9ea87e2a768
MD5 29d763dd54d1227fd20d3b261ac2b600
BLAKE2b-256 96b9b6027892ece8c7efc691476e63eab2d3856b30ecafab878f4ce69e5b713a

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: stratax-0.3.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 417.4 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for stratax-0.3.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 38b33d88d59028841fec6f658469d2b1d1b7910ab574501381327f74bdcebe56
MD5 94accc4fed8da161fcdae484d0d1ae0d
BLAKE2b-256 797659186f175fb93aac5e35d579048a99bb2715ec7c702fe0487e4105a068da

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp314-cp314-win_amd64.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: stratax-0.3.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 375.6 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for stratax-0.3.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 4625a9860f3b8ca0dd9aa984cbe0fc83af94ecdd433d61ec8593523cf6d5d077
MD5 af2cc3f1d12f946790ea6381a46a59be
BLAKE2b-256 8241b8e392ed58fcc24a644274399b39209423f075153c02fc87c5bd1283eeb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp314-cp314-win32.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stratax-0.3.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff806117d0ac5b13c15e86154f30fb24e5bcc414a5673d9e81b33c7e2435350c
MD5 893ae76bfa8e4edb5ec3e67e57941e88
BLAKE2b-256 e7f9a3f7e28110880993845076cd2bae634067742927adc642c0227cd91f6424

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stratax-0.3.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6c8aa4590676cf5e593fcda742aa73f8cef3ca87aa9434dbc15d776766376103
MD5 cd57c7d31ca50028412a9a3ebf1971d0
BLAKE2b-256 ea4c0de96f32aa2a02ff26ef2fda914e6be04b32f03284409f8258485455487f

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stratax-0.3.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3afe2220bfb555f65bb962eb44d65673654a2417d2addfcfbc3fcd662fc1b6d0
MD5 6aa5445ce8ceb0d985e01cdeb8258573
BLAKE2b-256 c3f551ed14c62f8136187770754fe62eecd1de09fca9cce06daeb28db7ad8feb

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: stratax-0.3.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 404.6 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 stratax-0.3.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1951698b95876c1a5fbeb3bf4e0e77306de7b83bbd78bfce979677cd6ff71665
MD5 abb7cdc4b3d544cce20833d011138152
BLAKE2b-256 c9782eeea161ee34f2b6ac00f7f274a669afec7576b6d6fa51fe66ff82d6b17d

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp313-cp313-win_amd64.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: stratax-0.3.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 366.8 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for stratax-0.3.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d760ff41dd713d3671056646f44601cbc4068da85a3c22c4bbae955435be3510
MD5 53206c31badde8d7158ce878d45ed567
BLAKE2b-256 f63d006698136d27f37bc07be3836f212160c67b841ed875b44ca83bc881a406

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp313-cp313-win32.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stratax-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5bd6e3207e923cb9bbb40ce145980eab31a7d73f5bc019b08a157cad261a98d3
MD5 c5c1987a5fe8ec91c3878a95d8803a81
BLAKE2b-256 efadbd73322789f7b566e28f931e504258dc1f659b9a69ac352997331133ff43

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stratax-0.3.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f1ca7ad859e96e5ecf225a90cddcd381178a2668fdc95beddee3a2d2cfd78d6f
MD5 9d7d6fd5f0e6fe3d46c830249e068e54
BLAKE2b-256 7b71e2633d4d1d2ae40c7e0887c3f60e70f713944c6a4fb8790d8af358ce810c

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stratax-0.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b93a7e1c3386bde92e205a78555d5292c61b142aae49e77bbaf76131b42e7b6f
MD5 2a2b5db167b6a0417e2b6bb9c31de41c
BLAKE2b-256 d7e8f7d9e7d5e31f91e4c76ef5f6dd29d6dac6783e83f4eb01b81076ba7ba380

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: stratax-0.3.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 404.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for stratax-0.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3895db8e6d349257fce732a17980321199d460db976bad676f74bc2c89977669
MD5 6d77dc1c724b328c79c163be0e593f10
BLAKE2b-256 e7537188887571c3552bd5156def4859b09b4e5183df8510a519e28917df5b78

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp312-cp312-win_amd64.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: stratax-0.3.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 366.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for stratax-0.3.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 38c2725ded4c36527f96b241e7797e50c72c554d7f57ee6e7192cbb3342e04c2
MD5 d29c3f1b202f7c6d96d5463af877b734
BLAKE2b-256 6284941e922ccd1079f513b62a43faf5f29ebefc5af5976a00f3095402c13515

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp312-cp312-win32.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stratax-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d30e770574ca28b9d908cc7c7ca5a0679ebb0fca8957e4754836c5b4d26bfe8f
MD5 6b70fbd8ed250de10710e41fe1a1427d
BLAKE2b-256 91baefd66e93ef7440a30362bb023b4f8017a3b0e4208ccfad2363d5bdc68e27

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stratax-0.3.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 84b7ceca4e8457827a229ae9656a26e30b911cc0b6a4382f055de3d9b13047d4
MD5 48e0dd14df93970a131b26a4747319d7
BLAKE2b-256 67dbe46d97304e938f58ae775334fdfbc1e3dd0b33a9336ad1f2bf7550cff145

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stratax-0.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2eb2a4b62e148b6fddb5072cee88efb02b6b3c60187a20253638c36cd1f32ac
MD5 a947e9747fd8210bdabe9231bbd27d28
BLAKE2b-256 c218cf9d822c6d010643910fb2fe0a484b1300fed992e57a48ff26e4d20ce08b

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: stratax-0.3.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 398.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for stratax-0.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 90b0ab575997d56e6aabccbff4fe828c71e2d6bb18749c05ac3e4492365ae026
MD5 eab32ba1d131a01256a20c6a86603582
BLAKE2b-256 84b01195334eabe7f9ff605b1d68e39691daea4af2755a1ef94a3f3d54c234f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp311-cp311-win_amd64.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: stratax-0.3.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 361.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for stratax-0.3.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2bfc3d73e36f03592c6bf2d781763f0746fd3a6763392341d4f3cc909a7c98d4
MD5 ea10b3f8ee16c1f55157e1c66e60cf9e
BLAKE2b-256 3d3e97550dfd96906b0898fcc977380fadc99dbfcc04e83b89bc4dcbef0c5ca2

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp311-cp311-win32.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stratax-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ba8be3c7dfb5c5528632473604393d3b39ffe0121a1689e355ed62383d152a94
MD5 401e50c7f45e45e84c23437f0d203dc9
BLAKE2b-256 ea7e32e4625927755126184e761b1331c8dbafd82ec31f64b34b3f876ee4b167

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stratax-0.3.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 26832a25d7f91622a2d68e03ca38fd23a18ed0c035d566f62100719fb077a41c
MD5 0923b0dc8cb11945550b35bb569ae8e9
BLAKE2b-256 f4ae5b431482c8893311cf8166413c1ed5c58da2fd4c132df5f3a724b461027a

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stratax-0.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 564671baf5b32f25c4afc7ee9c2fdb49d3fa1794a3e0eeb0b058d9f59d26f5f4
MD5 91558c304b963e84d536baef567ba68a
BLAKE2b-256 22392a84e07c4c8a95a3bbc28ca035edd1771da200054eb7b510bd4633a2df0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: stratax-0.3.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 397.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for stratax-0.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a2c935e306f28ed2035f45f822d582725737dbbc409939d62cfecfe924e52662
MD5 b1e8be7ed5153f5600716b8933053d64
BLAKE2b-256 b1185f450cac9f413db0446c8bb70a5e046583443e006ffa6820dbad0ae2b2ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp310-cp310-win_amd64.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: stratax-0.3.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 360.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for stratax-0.3.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 cf873491a0f12644ed83d88d02e5cd7cb7724a080a354aa7a945ad90fd950fad
MD5 781fb996aef5f31f2bd54e260fcda3db
BLAKE2b-256 b6fee3570c450739fc352f2c0b596cbd6a73eecdd69aed0b03562e1338eec178

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp310-cp310-win32.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stratax-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d97cde6e3ee10a8c5c342b2b92cc878305b10eb85338ac83a5893b27c053f514
MD5 71bf48cc72102e9332ef667c244f50f6
BLAKE2b-256 6f67a5f13b8dd3e1e6f2b37c9c8ab47c45c05be0dbd88c0b56935fa453ed7c63

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stratax-0.3.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ad86b7c31117ce0c86996d0f00491e18e284c7a4d373e2b5142f95afa0163dcc
MD5 69b33dd3b04776df60e222859b42abaa
BLAKE2b-256 d2cb58c82cce1fb85b943ed6e13aad768c8362689820fc4869c3616dd1e33fae

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on njryan-boou/stratax

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

File details

Details for the file stratax-0.3.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stratax-0.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc98419399817e27bb37619b0c3a465dfe23b61bf04ac5ed0dfc8e90886e8452
MD5 9950b51a6df5626701351a0deff6aa85
BLAKE2b-256 685df361aee8b16fa84ff1596040b63b7596acae96f254d27ad05273a5bcf777

See more details on using hashes here.

Provenance

The following attestation bundles were made for stratax-0.3.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on njryan-boou/stratax

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.3.1 This release

41 files

0.2.0

2 files

0.1.0

2 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