Skip to main content

Modular subgraph mining library with unified API

Project description

submine

submine is a research‑grade Python library for frequent subgraph mining that provides a unified, safe, and extensible interface over heterogeneous mining algorithms implemented in Python, C++, and Java.

The goal of submine is to let users focus on what to mine rather than how each algorithm expects its input. Users select an algorithm and parameters; submine automatically validates inputs, converts graph formats, and executes the backend in a controlled and reproducible manner.


Key Features

  • Algorithm‑centric API You specify the mining algorithm and parameters; submine handles format adaptation and execution.

  • Direct format transcoding (no redundant rewrites) Input graphs are converted directly into the native format required by the selected algorithm.

  • Multi‑format graph support Edge lists, gSpan datasets, single‑graph .lg files, and GEXF are supported out of the box.

  • Safe and reproducible execution Parameter validation, deterministic format detection, and hardened subprocess execution are enforced by default.

  • Extensible design New algorithms can be added via a clean backend interface without modifying core logic.


Supported Algorithms

gSpan (Frequent Subgraph Mining)

  • Graph type: Multiple graphs (transactional dataset)
  • Typical use case: Discovering frequent substructures across many graphs
  • Backend: C++

The gSpan backend in submine is a C++ implementation adapted and extended from the widely used gBoost / gSpan reference implementations, with additional input validation, format handling, and Python bindings for safe integration.

SoPaGraMi (Single‑Graph Pattern Mining)

  • Graph type: Single large graph
  • Typical use case: Social, biological, or information networks
  • Backend: C++

SoPaGraMi is used for scalable subgraph mining on a single graph, where frequency is defined structurally rather than transactionally.


Supported Input Formats

submine automatically detects the input format and converts it to the format required by the chosen algorithm:

  • Edge lists: .txt, .edgelist
  • gSpan datasets: .data, .data.x, .data.N
  • SoPaGraMi graphs: .lg
  • GEXF: .gexf

Format detection is deterministic and does not rely on user‑supplied flags.


Installation

Standard installation

pip install submine

Development installation

pip install -e ".[dev]"

Basic Usage

gSpan example

from submine.api import mine_subgraphs

results = mine_subgraphs(
    data="graphs.data",
    algorithm="gspan",
    min_support=5
)

Parameters

  • data (str or path): Path to the input graph dataset
  • algorithm (str): Mining algorithm ("gspan", "sopagrami", …)
  • min_support (int): Minimum support threshold (algorithm‑specific semantics)

SoPaGraMi example

results = mine_subgraphs(
    data="citeseer.lg",
    algorithm="sopagrami",
    min_support=100,
    sorted_seeds=4,
    dump_images_csv=True,
    dump_sample_embeddings=False,
    out_dir="."
)

SoPaGraMi‑specific parameters

  • min_support (int): Minimum frequency threshold
  • sorted_seeds (int): Seed sorting strategy (implementation‑specific)
  • dump_images_csv (bool): Whether to dump pattern images as CSV metadata
  • dump_sample_embeddings (bool): Whether to dump sample embeddings (experimental)
  • out_dir (str or path): Output directory for results (default: ./sopagrami_result)

Design Philosophy

  • No algorithm‑specific I/O burden on the user Users never manually convert graph formats.

  • Minimal assumptions about graph structure Directed/undirected and labeled/unlabeled graphs are handled at the backend level.

  • Research‑grade transparency Backends are explicitly documented and citable.


Citation

If you use gSpan, please cite:

@inproceedings{yan2002gspan,
  title={gspan: Graph-based substructure pattern mining},
  author={Yan, Xifeng and Han, Jiawei},
  booktitle={Proceedings of the IEEE International Conference on Data Mining},
  pages={721--724},
  year={2002}
}

If you use SoPaGraMi, please cite:

@article{nguyen2020fast,
  title={Fast and scalable algorithms for mining subgraphs in a single large graph},
  author={Nguyen, Lam BQ and Vo, Bay and Le, Ngoc-Thao and Snasel, Vaclav and Zelinka, Ivan},
  journal={Engineering Applications of Artificial Intelligence},
  volume={90},
  pages={103539},
  year={2020}
}

To cite this library:

@misc{amure_submine,
  title  = {submine: A Unified Subgraph Mining Library},
  author = {Amure, Ridwan},
  year   = {2025},
  url    = {https://github.com/instabaines/submine}
}

Project details


Download files

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

Source Distribution

submine-0.1.2.tar.gz (170.5 kB view details)

Uploaded Source

Built Distributions

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

submine-0.1.2-pp311-pypy311_pp73-win_amd64.whl (300.8 kB view details)

Uploaded PyPyWindows x86-64

submine-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (462.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

submine-0.1.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (494.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

submine-0.1.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl (262.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

submine-0.1.2-pp310-pypy310_pp73-win_amd64.whl (298.1 kB view details)

Uploaded PyPyWindows x86-64

submine-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (459.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

submine-0.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (491.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

submine-0.1.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl (259.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

submine-0.1.2-pp39-pypy39_pp73-win_amd64.whl (298.6 kB view details)

Uploaded PyPyWindows x86-64

submine-0.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (459.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

submine-0.1.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (491.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

submine-0.1.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl (259.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

submine-0.1.2-cp313-cp313-win_amd64.whl (300.1 kB view details)

Uploaded CPython 3.13Windows x86-64

submine-0.1.2-cp313-cp313-win32.whl (271.7 kB view details)

Uploaded CPython 3.13Windows x86

submine-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

submine-0.1.2-cp313-cp313-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

submine-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (461.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

submine-0.1.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (493.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

submine-0.1.2-cp313-cp313-macosx_11_0_arm64.whl (259.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

submine-0.1.2-cp312-cp312-win_amd64.whl (300.0 kB view details)

Uploaded CPython 3.12Windows x86-64

submine-0.1.2-cp312-cp312-win32.whl (271.7 kB view details)

Uploaded CPython 3.12Windows x86

submine-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

submine-0.1.2-cp312-cp312-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

submine-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (461.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

submine-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (493.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

submine-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (259.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

submine-0.1.2-cp311-cp311-win_amd64.whl (300.8 kB view details)

Uploaded CPython 3.11Windows x86-64

submine-0.1.2-cp311-cp311-win32.whl (272.7 kB view details)

Uploaded CPython 3.11Windows x86

submine-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

submine-0.1.2-cp311-cp311-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

submine-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (462.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

submine-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (494.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

submine-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (261.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

submine-0.1.2-cp310-cp310-win_amd64.whl (298.3 kB view details)

Uploaded CPython 3.10Windows x86-64

submine-0.1.2-cp310-cp310-win32.whl (270.1 kB view details)

Uploaded CPython 3.10Windows x86

submine-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

submine-0.1.2-cp310-cp310-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

submine-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (459.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

submine-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (492.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

submine-0.1.2-cp310-cp310-macosx_11_0_arm64.whl (258.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

submine-0.1.2-cp39-cp39-win_amd64.whl (299.1 kB view details)

Uploaded CPython 3.9Windows x86-64

submine-0.1.2-cp39-cp39-win32.whl (270.5 kB view details)

Uploaded CPython 3.9Windows x86

submine-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

submine-0.1.2-cp39-cp39-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

submine-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (459.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

submine-0.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (492.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

submine-0.1.2-cp39-cp39-macosx_11_0_arm64.whl (259.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file submine-0.1.2.tar.gz.

File metadata

  • Download URL: submine-0.1.2.tar.gz
  • Upload date:
  • Size: 170.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for submine-0.1.2.tar.gz
Algorithm Hash digest
SHA256 9596d4a9670a72218d4dfae9b03661df0309a69518d03830256b3e140d3d63b6
MD5 2270491c57c4f454c6a412b61f8e9e98
BLAKE2b-256 501a6d87176df4639761a63ccfa78934cc55ff5ede576fa3819e7e9afe728aa7

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2.tar.gz:

Publisher: release.yml on instabaines/submine

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

File details

Details for the file submine-0.1.2-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for submine-0.1.2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d28ffd31f50d8fe6802b9e5df2d5fa884a047253ffad5efbc679ea4646d66340
MD5 f624726f3d8ab0c3e7de11d176e1bbc6
BLAKE2b-256 8b564807c117202739de5e944f03c47ee4d6ccb4a73d312ef4cbe3f189e487af

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-pp311-pypy311_pp73-win_amd64.whl:

Publisher: release.yml on instabaines/submine

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

File details

Details for the file submine-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for submine-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2971f9fbd29d8083d7599a8a8dc413cb952f410caf52d4d4beaa0b3bfe75c5e3
MD5 b746adb124ab70b9ff9c8172bac7922b
BLAKE2b-256 feab941907b53f411c317cf18402bbec8f5a475042e0cdf4ac2d616f9fa5bfe1

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on instabaines/submine

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

File details

Details for the file submine-0.1.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for submine-0.1.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4c29aed1e4a5d27f90ad85ac506e6aeb07d15c6e3463d56e95e9dc66bb2fe4a7
MD5 1dff7b523d3a35b48138a6e438ffb4de
BLAKE2b-256 05be4dc2a23e12c26390894367535215c8d2398590f44136425aa1c65fd391a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on instabaines/submine

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

File details

Details for the file submine-0.1.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for submine-0.1.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 309c858899efa307bc3dc258deb87b7e73661d87d61c334f53507f0d06f79222
MD5 4ca322328cef736e486b817a32b456e2
BLAKE2b-256 d8d0dcdf9ac8255f213b01b5b28a86d1bc12296fb9d7b9a766517bdba1a0ee16

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: release.yml on instabaines/submine

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

File details

Details for the file submine-0.1.2-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for submine-0.1.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1a73d8b613d647047ffc04d1a619003249ef0a8079fc2a3f48ae0f82bcda0cf7
MD5 f07fb8a2f7fa5b2a63765f6611869af8
BLAKE2b-256 e888700a9b6ba9dfa3263d3e6db0c09394c85cf1a645162c20406ea0c26e8bf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-pp310-pypy310_pp73-win_amd64.whl:

Publisher: release.yml on instabaines/submine

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

File details

Details for the file submine-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for submine-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31bcbf5a9645ee33dc7c08a3088a2c7a77701284f3b9e840e12fe8d46c37ca2f
MD5 edddca43f7a441f2c0ca2e49ae148f0d
BLAKE2b-256 10af7261c536400ffdc8143f563785b1d9b117582a27176f712975a50c64162f

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on instabaines/submine

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

File details

Details for the file submine-0.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for submine-0.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bf2047a07ad399e4fba6b4b7d234f2264c0241a93d7349ce4ddd9e2f2fdbe1df
MD5 b3a12c6d0d7bdd4dd91346bfdd7eb256
BLAKE2b-256 655594d1954b59ae853d8a8079fb9c255834470dbadf1980bb5e1cc56db062ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on instabaines/submine

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

File details

Details for the file submine-0.1.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for submine-0.1.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71d5d254fab3ad20d1f6c44031be021b66a641e2e6cc2f267e53c7c274f479f8
MD5 8f09fb2cb7db037bb4bfdae1f57e862e
BLAKE2b-256 d9305b2148cc92ee981f541a3de7f41bf2e70e9a1495d8fa7d99a73c1fe89526

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: release.yml on instabaines/submine

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

File details

Details for the file submine-0.1.2-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for submine-0.1.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 40bc2b693727acf6c9549fddf450e14a26c14e18dd71914f6dd9e1d5dbb0f66a
MD5 7451e116fefb8415013240ada910bbfd
BLAKE2b-256 10a22ff57b3e5b58ee0c0214a85891052e921ef2fddb5a776921d4bdd7f2306f

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-pp39-pypy39_pp73-win_amd64.whl:

Publisher: release.yml on instabaines/submine

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

File details

Details for the file submine-0.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for submine-0.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0e21ee4c55853918577298f610892e5eb911f62db127abb6b8319373c77ef56
MD5 c9e81186b915e494bb8c040bd6c432ad
BLAKE2b-256 393a49cc13f2d918dd4ffa7a5d011860175ac1a71ddbb5e38d8459b5bb0afc39

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on instabaines/submine

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

File details

Details for the file submine-0.1.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for submine-0.1.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d73705e0d78b6e920edbfdac983f9617586711020d3105b56feb489a747e0098
MD5 69505b8c254c1350d2886708887075b5
BLAKE2b-256 94a097712f25efc8b4fd83bf64ea3ab646c898ab6dc54d2a7f97b26fd5a80474

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on instabaines/submine

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

File details

Details for the file submine-0.1.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for submine-0.1.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e929744c5bee736f5a60ba89b8159eba9bc1440aff3ec536367a2efdf15841d7
MD5 1ef0efb5e756f53a4c1a8d63997dab52
BLAKE2b-256 e3e57b1d73a195a04e33f400b4670f0ebe64c61f55501f811e958b3b5c54dbfc

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl:

Publisher: release.yml on instabaines/submine

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

File details

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

File metadata

  • Download URL: submine-0.1.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 300.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for submine-0.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0a22288aa231a98bef6c5acc4acc072cf8dfe2a741ad57e5409417e5b548d4a4
MD5 3a83d4b95ef713dbb2ea52fc2004d2d3
BLAKE2b-256 117babbe70dfe4adbf374df3df9c889f15b80aadddddb46d49abd37617c13ef7

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-cp313-cp313-win_amd64.whl:

Publisher: release.yml on instabaines/submine

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

File details

Details for the file submine-0.1.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: submine-0.1.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 271.7 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for submine-0.1.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9fb3a2eec966ccf1f80d28e2911aa01739b1dba3862bda27116fb8fd64dfad08
MD5 0428a816e82de848462dbcf1c0b33bfd
BLAKE2b-256 7ed3743233f27c841c968f2fb91d2bc8190a3dd61cff3dd5bc5920fb353d6070

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-cp313-cp313-win32.whl:

Publisher: release.yml on instabaines/submine

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

File details

Details for the file submine-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for submine-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9fd8277b8bc769364d49eefff0c68fc99096be1452449a5dbe56e0aab2eca9e2
MD5 a3267848c72cb29742dcaf5c763afaa1
BLAKE2b-256 6c8bf9e593d167538c0da2e5ecb17549fd534b169986cd339d37c3504837466a

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on instabaines/submine

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

File details

Details for the file submine-0.1.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for submine-0.1.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 72a00cd1b8eb961b07a998f4cfc5691d964f2568f54b0593ca00c6625ae1f073
MD5 d7d70b33b1e58d3a79caa93c08f2622f
BLAKE2b-256 bd2e046eb19a481a277e99b84cfc53a15570d02f7a598d615bb7f1714fd68335

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: release.yml on instabaines/submine

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

File details

Details for the file submine-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for submine-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 57e7f66b550ae45b0225527e5e3f9da650e1470631c58e7670fb5560cb094e3a
MD5 b164062409ae03dd872618e32616c7ee
BLAKE2b-256 e718cde90ffcd30f9470269dada5a9b5927b0ab83292081b1d90304db8f4957f

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on instabaines/submine

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

File details

Details for the file submine-0.1.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for submine-0.1.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6a102c9359aa57cf040137f3ac636eef6781622653386a0375a68ae1eab5a10d
MD5 02e987c8fa19fdc943cc0b54692e7f55
BLAKE2b-256 ca225fcfabbbaa0c1403173f7d2d6532612e98d44b536989f0178d3db3c8c116

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on instabaines/submine

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

File details

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

File metadata

File hashes

Hashes for submine-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78c5cf64de79a6ac7e9b647675a457c0e909e262b0cedbb3191a2b55faf72a34
MD5 fca92452130af9d7259cd7876fb34034
BLAKE2b-256 c701ba88ea496ce647d4b3d86c6aa768023d2b404be470cb616e69aa87b4ca0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on instabaines/submine

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

File details

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

File metadata

  • Download URL: submine-0.1.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 300.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for submine-0.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d1678ee052cecf6472b50f0580451653c7b26b413593192df60f182172250f6c
MD5 7b2f9c6fe8881eeefa2daa110425c393
BLAKE2b-256 6ae302d9dfca2c28b26f72932dba3dcde8690cf0964ab091a743f1ee91f84393

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-cp312-cp312-win_amd64.whl:

Publisher: release.yml on instabaines/submine

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

File details

Details for the file submine-0.1.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: submine-0.1.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 271.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for submine-0.1.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4c2f4ae19d5c1636ea289fbdd607780bc1a1fd6af02515fa85cc5c745df0100e
MD5 a58fe97f0c344ccfe704c5f933171324
BLAKE2b-256 6565657338637d1db0e6711555d595367d2451a6ec8b0a2ec23a20bbeb7de346

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-cp312-cp312-win32.whl:

Publisher: release.yml on instabaines/submine

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

File details

Details for the file submine-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for submine-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2df7e6826089a541d2e1cf62e593acb84376a267038b3dcb61612c1d33f204f8
MD5 2d8c3f8af6e5cff0524c136497c6d6d1
BLAKE2b-256 89e22a7f5df16cad1526ca32302a0a71d1234103586cc9771992f93117594db9

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on instabaines/submine

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

File details

Details for the file submine-0.1.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for submine-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 66d82cb9ce61987e805c19ea3937f267ba56f41b763b3471768814278440e792
MD5 754b9c268626a757c6ba47aa37e8eb01
BLAKE2b-256 896fc55bdd69f760126353bea45330974b199e609274669ebf0121677bea8ed3

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: release.yml on instabaines/submine

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

File details

Details for the file submine-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for submine-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cdacb6c3e7eaa9d43b8fa481ca2f84b466c03ef587076b31e4839ac6d890040c
MD5 c5f3e1c94d4dddad8d27338bb66edd08
BLAKE2b-256 009a7523431f70e962adb375feac4ad63b1260c3c4cccc40cda2cf2f9e910893

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on instabaines/submine

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

File details

Details for the file submine-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for submine-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 960b12d055cce6db0b15cf59cfc468acdacb9f594842e59689c51754cd68dc9a
MD5 03a486c047b12652fa1de9f4ba1301f8
BLAKE2b-256 ca083786d275da0ca45d86668ef276dbea9e6ad85d7e8c8d6f25961185bb8838

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on instabaines/submine

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

File details

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

File metadata

File hashes

Hashes for submine-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a212cce6f2243e77a75b17461db8ecbd81e48e705d94c5153d39d6a55f6397b
MD5 895bf118263acd1d3c831c889b828a23
BLAKE2b-256 45b10f38501610e8ed7faadbc4182405f6508ff5968dd2b58e315b4db9652f25

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on instabaines/submine

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

File details

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

File metadata

  • Download URL: submine-0.1.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 300.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for submine-0.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5905081de2c6d8139298f3cc50bdea11fe6b870b17508907ed4bebe8b668e0e0
MD5 212631b96c233a35b88d529a1189a2a1
BLAKE2b-256 72b2119cae5d1e2cc37b1d206c4649b203e01cb80b5157e2473fb929eaed3569

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-cp311-cp311-win_amd64.whl:

Publisher: release.yml on instabaines/submine

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

File details

Details for the file submine-0.1.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: submine-0.1.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 272.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for submine-0.1.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d7a204b73a2cca1e23171498679a6a7419fc1782d95d56bb2be7960009696beb
MD5 a62306a80bb3591040ce28615c9d5ad3
BLAKE2b-256 f531dd7127da0aff7d012b8f402df400a43ef50f5f9cfe825ae5fcd92646f0a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-cp311-cp311-win32.whl:

Publisher: release.yml on instabaines/submine

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

File details

Details for the file submine-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for submine-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 06e81fe9e460782332e85f91b11fea9ecf4a59e651dc6c24b1b2328579d99681
MD5 c233ad3d9e859db678374843cecc7d0d
BLAKE2b-256 d21e702a8c939236e54502df562995912f79c19413c2ffac00f81faa99ebaac9

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on instabaines/submine

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

File details

Details for the file submine-0.1.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for submine-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9decad3eaa2276f4fd557734083f45070661c0e5027bfc8c62838402ee7df455
MD5 f600725237d3a832486341bd2ee43ffb
BLAKE2b-256 bacb1c01ceac3a3be390ae4e997306025a305058d8b0ed74bd848b9a35643ece

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: release.yml on instabaines/submine

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

File details

Details for the file submine-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for submine-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ff6579fbf8b602d632d5d418cb8c8213e92518ad66289366e76cf347d9f2eff5
MD5 34353b4cdd7e2bde0d8b07dcc5e505e7
BLAKE2b-256 64f710abc864cd89122f5aea577a5c397899e58499e89addcfc68cf410c223d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on instabaines/submine

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

File details

Details for the file submine-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for submine-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d7fe91e9ae33de5f2609414f31cd4e1f103dc99747be242d65d3a797ae3291bd
MD5 72ba6283453735c714afb713247ff366
BLAKE2b-256 a6e54171b51905163b6d88c598ca34745dc7962b03fda6b6908323e6fc445977

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on instabaines/submine

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

File details

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

File metadata

File hashes

Hashes for submine-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e3220c8f1e90f16c60dc929966c76bfc9e0410371f5b720b5d29886cb2590286
MD5 dd20a031c3c12fca779196a878d264b0
BLAKE2b-256 593705e83da3c3273e8c3c17252e84e645735c83ea10886039699abaa92dc146

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on instabaines/submine

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

File details

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

File metadata

  • Download URL: submine-0.1.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 298.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for submine-0.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 71a23a97ac8005c8d100b073b16993fb2cbc25e82da2d340ddb9bfb848471600
MD5 2f16823c3976e391e788aa833cf716ec
BLAKE2b-256 d8d5b91d8229f2af13fd17a3d06833074240091f9ff21f91efd271bf600c226d

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-cp310-cp310-win_amd64.whl:

Publisher: release.yml on instabaines/submine

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

File details

Details for the file submine-0.1.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: submine-0.1.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 270.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for submine-0.1.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 92cfc5c7eb3b150323d695d8936d6a283aa79f4f04c73351aa157d57cf926436
MD5 7ce0b4cc87174266ec16f5144c74fb5c
BLAKE2b-256 36acaefd15fe9ce2da94b33bd1c1252cbde74f0cb25640eadc0834c0821986ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-cp310-cp310-win32.whl:

Publisher: release.yml on instabaines/submine

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

File details

Details for the file submine-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for submine-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d8bfd28ab1598935188799145c38da58fd1fd273a80a6ac1e18bb0dfa29f864b
MD5 a559e82f66baa6385e9870cbd99ab671
BLAKE2b-256 39940a10248fe937f9d10221d4e61e09360a13c6ac4869b9def85ac0711584e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on instabaines/submine

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

File details

Details for the file submine-0.1.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for submine-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a778293aa289d53aa106163f1c8edd0860dd854e4fe4058abe3602ad8a1bcc12
MD5 6bbffb01036cff072f1baa85ee90d705
BLAKE2b-256 6e30f1e4ad1fd13c9dffe6527aadd69ce64902f1441da2893cd70205a417bba6

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: release.yml on instabaines/submine

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

File details

Details for the file submine-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for submine-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a0db2ff1da9864477184fdd4c3587df32d067385c6b7bccedd9089ea28d326f
MD5 ba96d98f1450c5c37103f37939002455
BLAKE2b-256 259f6f0845a734b766242a40f972f4c76f9fbf2da9ee6ef580a2593b5b062c7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on instabaines/submine

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

File details

Details for the file submine-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for submine-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1a3dde531a5c4d0904556f9e6094fee6c5be2c4d7acfbbd2979971e7df67793f
MD5 9099ac010f7ec59b3d73b223eb837e33
BLAKE2b-256 cc33df9dfee1ddb39018a4bfba2e9de5a6e05d6ac9fe6d0d51d8e61c8183998b

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on instabaines/submine

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

File details

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

File metadata

File hashes

Hashes for submine-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c4e25abf95b53bb8b956d30a5d10c3823d7568957fae55dc64d37b5b88d91508
MD5 f13b88f5a450bd738903887872749e75
BLAKE2b-256 594b91533e443995900b1ac802a8fa729ad6a47efa79692ecfe094286488c7bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on instabaines/submine

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

File details

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

File metadata

  • Download URL: submine-0.1.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 299.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for submine-0.1.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 257b756a1fdb62b0f1fd3ba7fd3e61dd590cf00972c8fda94b874a0fc35ab2f9
MD5 fd473fb72952313a0895bd8b30f28a1a
BLAKE2b-256 44007398198f9b2d62b78f4e260c3e419567028333530e03ee594ba6e63da293

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-cp39-cp39-win_amd64.whl:

Publisher: release.yml on instabaines/submine

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

File details

Details for the file submine-0.1.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: submine-0.1.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 270.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for submine-0.1.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4c53c47c1e3cd1791bdca883329494a80cd579b5bc8b4e93629efd5ad7a8e9a4
MD5 8a97c59c9c1fde1ec0935089e60dd402
BLAKE2b-256 3208ea2465678502b7540d0c620a7a20a1c4aca51ffa6724b4a4b341efd65ba6

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-cp39-cp39-win32.whl:

Publisher: release.yml on instabaines/submine

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

File details

Details for the file submine-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for submine-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e30dfd4ed9c552c6459801f6e309eba184f634e170a42479b5438bade9a4335
MD5 6f35ba061a9dfb1ab850fd6272797f75
BLAKE2b-256 2388e6b55012fd59057bac21807e7a6c5b261bbda9598ab62c5c48e97b12cade

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release.yml on instabaines/submine

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

File details

Details for the file submine-0.1.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for submine-0.1.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 183c739c941947887523f298b7218f98656ac5c3f666a36705441b14b123855b
MD5 8a8b7c309b2966e163268b14740ca221
BLAKE2b-256 d8910721dca5679b349d6091495f061bf4159c6c8b82add08aa4b01738f9cb48

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: release.yml on instabaines/submine

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

File details

Details for the file submine-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for submine-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91734c00bb6e824798d4554dbcefa93c3c619d13780e6510899e0058ba2202a5
MD5 5eff14d5e62883725be7556feb390f6c
BLAKE2b-256 df8bcdc22401b67f11a40a54f21a1e3afd7f8dab5f88329204b9c6d949f9e84e

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on instabaines/submine

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

File details

Details for the file submine-0.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for submine-0.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a2ff9c9f0c70543e7f034d204cacd860a1582fbbba115a05b625bc30ea256caf
MD5 8ff62324ca3901c700f97a604fd0c4ec
BLAKE2b-256 bf033cbda9169c95f02926761fac2986ec66265d93ab81b52ef289ca40f27955

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on instabaines/submine

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

File details

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

File metadata

File hashes

Hashes for submine-0.1.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5a35c7ad375b2374a9a9796c20cb1c5df29e4cd3f0f65cf04b270c319e1af38
MD5 1f43489d66e2b75ae8b0c45a92394955
BLAKE2b-256 6799156ea13eb70738e5f4bf7080c60a9f25354a96e7de94bcddfe1a4a5b1e2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.2-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on instabaines/submine

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page