Skip to main content

Modular subgraph mining library with unified API

Project description

submine

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

The library is designed to support research-grade reproducibility and production-safe execution, while remaining lightweight and backend-agnostic.

Core Design Principles

  • Algorithm-agnostic API Users select an algorithm; submine handles format adaptation and execution.

  • No redundant graph rewrites Input graphs are converted directly into the format required by the selected algorithm.

  • Strict input validation & safety Resource limits, parameter validation, and hardened subprocess execution are enforced by default.

  • Clean extensibility model New algorithms can be plugged in without modifying core logic.

Package Layout

submine/
├── api.py                  # Public API entrypoint
├── errors.py               # Structured exception hierarchy
├── core/
│   ├── graph.py            # Canonical graph representation
│   └── result.py           # Mining result containers
├── algorithms/
│   ├── base.py             # Base miner abstraction
│   ├── gspan.py            # gSpan wrapper / implementation
│   ├── sopagrami.py        # SoPaGraMi backend wrapper
│   └── ...
├── io/
│   ├── common.py           # Shared readers / writers
│   ├── transcode.py        # Format detection & conversion
│   ├── gspan.py            # gSpan I/O
│   ├── sopagrami.py        # .lg I/O
│   └── ...
├── utils/
│   └── checks.py           # Input validation & resource limits
└── tests/
    ├── unit/
    └── functional/

Supported Algorithms

Algorithm Graph Type Backend Notes
gSpan Multiple graphs Python / C++ Frequent subgraph mining
SoPaGraMi Single large graph C++ Social pattern mining

Each algorithm declares:

  • required input format,
  • parameter schema,
  • execution strategy (in-process vs subprocess).

Supported Input Formats

submine accepts graphs in multiple formats and converts them directly into the format required by the selected algorithm:

  • Edge list (.txt, .edgelist)

  • gSpan datasets (.data, .data.x, .data.N)

  • SoPaGraMi .lg

  • GEXF (.gexf)

  • Format detection is automatic and deterministic.

Installation

Runtime installation

pip install submine

Dev installation

pip install -e ".[dev]"

Basic Usage

from submine.api import mine_subgraphs

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

For SoPaGraMi:

results = mine_subgraphs("citeseer.lg", algorithm="sopagrami", 
                    min_support=100,
                    sorted_seeds=4,
                    dump_images_csv=True, #if you want to dump the images
                    dump_sample_embeddings=True, #if you want to dump the embeddings, not implemented yet
                    out_dir= "." # /path/to/dir to save the images and embeddings default is ./sopagrami_result
                    )

TODO

  • Include more algorithms
  • Added more utils for cross-usage between other graph/network libraries

Citation

If you use gspan kindly cite the paper

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

if you use sopagrami, kindly cite the paper

@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},
  publisher={Elsevier}
}

You can cite this implementation as well

@misc{amure_submine,
  title  = {submine: A 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.1.tar.gz (93.7 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.1-pp311-pypy311_pp73-win_amd64.whl (300.6 kB view details)

Uploaded PyPyWindows x86-64

submine-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (462.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

submine-0.1.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (493.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

submine-0.1.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (261.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

submine-0.1.1-pp310-pypy310_pp73-win_amd64.whl (297.9 kB view details)

Uploaded PyPyWindows x86-64

submine-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (459.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

submine-0.1.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (491.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

submine-0.1.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (259.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

submine-0.1.1-pp39-pypy39_pp73-win_amd64.whl (298.4 kB view details)

Uploaded PyPyWindows x86-64

submine-0.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (459.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

submine-0.1.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (491.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

submine-0.1.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (259.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

submine-0.1.1-cp313-cp313-win_amd64.whl (299.8 kB view details)

Uploaded CPython 3.13Windows x86-64

submine-0.1.1-cp313-cp313-win32.whl (271.4 kB view details)

Uploaded CPython 3.13Windows x86

submine-0.1.1-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.1-cp313-cp313-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

submine-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (460.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

submine-0.1.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (493.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

submine-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (259.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

submine-0.1.1-cp312-cp312-win_amd64.whl (299.8 kB view details)

Uploaded CPython 3.12Windows x86-64

submine-0.1.1-cp312-cp312-win32.whl (271.4 kB view details)

Uploaded CPython 3.12Windows x86

submine-0.1.1-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.1-cp312-cp312-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

submine-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (460.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

submine-0.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (493.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

submine-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (259.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

submine-0.1.1-cp311-cp311-win_amd64.whl (300.6 kB view details)

Uploaded CPython 3.11Windows x86-64

submine-0.1.1-cp311-cp311-win32.whl (272.4 kB view details)

Uploaded CPython 3.11Windows x86

submine-0.1.1-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.1-cp311-cp311-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

submine-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (462.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

submine-0.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (494.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

submine-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (261.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

submine-0.1.1-cp310-cp310-win_amd64.whl (298.0 kB view details)

Uploaded CPython 3.10Windows x86-64

submine-0.1.1-cp310-cp310-win32.whl (269.8 kB view details)

Uploaded CPython 3.10Windows x86

submine-0.1.1-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.1-cp310-cp310-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

submine-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (459.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

submine-0.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (491.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

submine-0.1.1-cp310-cp310-macosx_11_0_arm64.whl (258.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

submine-0.1.1-cp39-cp39-win_amd64.whl (298.9 kB view details)

Uploaded CPython 3.9Windows x86-64

submine-0.1.1-cp39-cp39-win32.whl (270.2 kB view details)

Uploaded CPython 3.9Windows x86

submine-0.1.1-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.1-cp39-cp39-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

submine-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (459.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

submine-0.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (492.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

submine-0.1.1-cp39-cp39-macosx_11_0_arm64.whl (258.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: submine-0.1.1.tar.gz
  • Upload date:
  • Size: 93.7 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.1.tar.gz
Algorithm Hash digest
SHA256 f5c51a331e491a636a95f2e02fb8118325eb8422d4cddbf498e3e6befdc476cf
MD5 02c10419ae0f297a8e2612f654abe373
BLAKE2b-256 3def05195470a092b2935e6cb1b485a0b4e5309a519a0374423bdc611d135882

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1.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.1-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for submine-0.1.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1817461b1d4bb3111c4a89f3482a87b40a3ed75e4ce4f1431b89861efa05ed5f
MD5 b738d93a8668e64b372d3ada32519521
BLAKE2b-256 9fa56e42f161a8c9797a377b36f9857ba1550236540e5bf19bf84da608e25b7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for submine-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f46eda9b23f54fbfc85af5984ca7c80b04ab5b94af3a89952e87332f2490ca2f
MD5 4964f9a29432df99cea53eebdb5b3125
BLAKE2b-256 5a9d8f825c7b0fcba7bb740348157033db841fee6ec9fdcfe7d2c28dc72e2c35

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for submine-0.1.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5e0669e3ca1412f0ad8e5d401b52b49f8444dcfcc343efd31e0afee99e306b59
MD5 3479519715f87e9082e3486ab6d09237
BLAKE2b-256 5ebe49b882ebd8a97535c3c7bffb44a18543149cdc44fb33a099853af4b15ee9

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for submine-0.1.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5a1a422d32fc8da8f27d4704889f8f43093c0bd954a9ac68319122a8f5ea707
MD5 4f7bcf9acce77fae35676b3c178d4a7f
BLAKE2b-256 73c2a4b2eb9e1110023c12b4e9836e8eaa10a4b19f9c158ee0072b1d5ab84fea

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for submine-0.1.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bb035e9b9fada26291ab607b4ac661552fb35dcd4fcefb71e17acdea3a4df105
MD5 d62c6608763c6fe04383df569686215c
BLAKE2b-256 e2396bf0fd961357ce404ec8b74dc13fd7558d7ffc168eafe7ca2e23f9253cdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for submine-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c70918276f091280937a9f001be8c93d3fa99984dc92c4e7213ec8e29e960e98
MD5 bd0022425cf05ceaa71a39c5adfb7657
BLAKE2b-256 a47670e9ef73e068c9bb199194edec61e37d9fa1e6ae31bea722e21360b5087c

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for submine-0.1.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b4f1b7b4ed27eb160c1bcaecf452266aa4397e5f9d984ddfa7f8a315993f7511
MD5 69b3370d68247a81b18d43bcb5f41900
BLAKE2b-256 ac7f0337d9de73ffc54836eab7607a86d267a2f1f6b983ecb8cfb61375dbd7d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for submine-0.1.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5a734d5365f407eb3041dc18df51ae6f03eb515ca86685cff1826f707bf4fa0
MD5 8e06cddf609b63d614fab467e90c2e21
BLAKE2b-256 5a23f5541687149bd4ab86ca0fe22b6939303a50d6e029f5a603e2731094c568

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for submine-0.1.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c2e9c3b9ebb42d7c16779bce6a76dfa47551368ccf5c04c03e9d4c1db72698eb
MD5 68d5f4aceeca2c15da9bfdd1bfea1b88
BLAKE2b-256 a0774f733ac8b6b3bbbcedd0ecb058e15866af9b8570a385ec9a503fd2a7d5a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for submine-0.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a05eea63f68ff5bd2acd594056fe213ed9940f21b0dd3dc3b2aad1c64e8076cd
MD5 72ff85ba7be34181f74f12ec2593d524
BLAKE2b-256 d81d1a3b03a4f50db088cb265447701f7f407df3775184d838f676ff7c69cff8

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for submine-0.1.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 99e8015a5b1df953336643b337467911c1aad275b2b338f9efd5baad14c3e501
MD5 09bf5c60cc1178a52ca3d135fbfbd08c
BLAKE2b-256 b5226663cc4d12539bebef98588dbb01dfab29c51bce8ff35d8f1774ae205600

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for submine-0.1.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e063e9a2325a56e25cb8da0823ccc24118d64f0aff3e7553d0f4778469a3e7d
MD5 f9e6eea107866041ddcc9fe0e5f57444
BLAKE2b-256 6e1096ab8fb43ec6641c150c6d43d8c49b6e03b9f3e5ddc8654d588de4b2cd20

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: submine-0.1.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 299.8 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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f16b942496ee4f7942622697322d9cfaaedaa0775fa2e1cbbdd907c2a245d07a
MD5 f6bd1a003392cdd4ad5e3e0c1be5f636
BLAKE2b-256 48107fdb4b7fe1cd01db1fac20ed613da7dfc6d445f9aef093249215df38f8e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: submine-0.1.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 271.4 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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 61bdc8e42ad5c4146bbced1740cdd8d86bc800128bf12de2ce913d3aecd8be82
MD5 0be1dc79e063aa1376bbbbe0a3ae0cd1
BLAKE2b-256 ddf765851c842f04e359c7cda3572d86e319710895affebed652d386f1bc8987

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for submine-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a9bb20342455fefe726d9868617f87538b379602c1a0e220a8784ebb9c1ec5aa
MD5 7d9012b7e2fc7d484f8e163b6cfe18cf
BLAKE2b-256 e00f3a22920ad14309e73ce8d8eb4e167e5afcc42ca429872a68f93e6a6a310a

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for submine-0.1.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bf87aa86b55823a3e480db2cda665d95ad43da347d2760283a699f330644e029
MD5 2c83cae52c1d4ba8baf8c7b0192255e6
BLAKE2b-256 a009c761534c6b47c85ed477500d62a583224224042cc9d15e398f72015f9b3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for submine-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d5155901860db82878cd8939556aa822377412085b54aac0b2ff588d5190c39
MD5 eb75ba665411601c6f020ac0bfac01ac
BLAKE2b-256 e98362fa9724c5e078737edbd17f967330cb77635bc9450dd1d3ec1d03c1d121

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for submine-0.1.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0cff3522bd94613c6e10e3e029b4b01c2dc16f1a3355514b63b083b66e2a15d1
MD5 e1ef4d587f50ac6012a93ee8e68c62aa
BLAKE2b-256 31805fa68d152866c915c1dc23464d0824576648f2985e229bde1a978748add0

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for submine-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4031d21bef40d82afb4cb21cd1cb0d8f2480153e2257a8b599f2ccd007d21e67
MD5 ef2f69c08674fdebc17448581a90d081
BLAKE2b-256 2715de1bf71e0aec4d3709d81d6c4cac58c5a9292725dc6be17a12c7ceaac1a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: submine-0.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 299.8 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1c197af6d03f6282fe21c360e54332e31555bfb331e23ae018a15c043e90a940
MD5 8307bbe399856bb4ec4c01959828d493
BLAKE2b-256 46c2207d632466d8808934b465123eafc64d21eb7ecafe76547f4e72ec594082

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: submine-0.1.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 271.4 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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b7b6b108d0b037c1dbcc139823c3fb4de937947c904b848566d40e4668103c61
MD5 70ecc430254ac5bb80d8254463da611f
BLAKE2b-256 592538d516a3cad667506e8b26e8186a4b2c95d0a1e858d4e1878120d4287791

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for submine-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 861fa6d0d98c6b650f8ce6fa6a19ccbec9d116674c76525742a35ab77ec60d58
MD5 dd15d3d5aa329fee9b9ffe2368e35146
BLAKE2b-256 b526710d2cb397761bfb4214589ea7f3404774cffceb2830e75b3cbd76420ed3

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for submine-0.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1e833196a1703be88f4ef18da714a657d3f0f3a79440921edaec61e7e02f761d
MD5 cfcd920059c07bd96b69ec87dde8a474
BLAKE2b-256 5a07a494ec9639e0aea1b032eb81ae12743fc80a082ef2c7728df9a40c57be50

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for submine-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7499476ad0d032263e09d447facdd80a4f76d3c98d5a73667c0afeb0ea892e5
MD5 70d0b55674f60c489878b608dcd42b09
BLAKE2b-256 69ac32f3862284562df6799c19f659880a88f5f8dc708b4f6cf8fd353f5208a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for submine-0.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 59305c6072454ed4ad01e96c475479a807103a7115d3a753a11cd641d5b93ae7
MD5 56317fa41f6e12128ad0c7fe08df5567
BLAKE2b-256 bdef647e667e8c54a18468b8341732e070030e511127150a10c8d22891d2600c

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for submine-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1d32f1fe10b0147be99f9b6e3e85d04a96050ca04aba96cd4ed4368f3163418
MD5 8bf2d68ac2df55dd1d5fbcd22ed54fa6
BLAKE2b-256 0384b82e4d789e344887a301e9f15decbd106a72d59962f01a33cd81748095c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: submine-0.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 300.6 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 597f29cf6ba4445c88c1044878d3eb94321ae49c3e754fa13541e0a4e35fecd2
MD5 120a1b0c4bf9c19ae65bb2643df7677f
BLAKE2b-256 61ed0ae1995b225a3c1176e2558e9634fcf18f2dc334844c9d266aa64ad4901e

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: submine-0.1.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 272.4 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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 12494d78f7fa66f331732384fcc39ede751c613840c9146f4826426fc8184405
MD5 181a9a441ac3409278e1d489c92c1756
BLAKE2b-256 48804246e326467800c31637a18dbd67e5a343715c6f33cb9cb83ef218954d8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for submine-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2999d5271b629565217df4955da42e01fd7ed5c58aa09b06e5450e3c905c429b
MD5 1ec14f1be4c5470dc1ce5fefa7c5d543
BLAKE2b-256 069426c80b407b660dda1769b1586ca1a3143c0e2510ce060f15565f7f9ba03f

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for submine-0.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2f1be76e5756f8aeb1c50e56d15101b5d1e9eff3cf6ac3eea2fe9a27141be03b
MD5 c49a348c4315f6fa48d3b03e25a09b38
BLAKE2b-256 49822bf18fada6e1e3934a689230940d7575f5d8f84b3fa961dc51d23b51a318

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for submine-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd13459ae7a466e5549fc03120256b5c7c0e41851ef911819b2c3c726bee661c
MD5 859e34cc7c6a360306d25309075f39ac
BLAKE2b-256 949c8013edf3c766e0a7158015f6a1a39eac230c061bc867fac532dff8eae5b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for submine-0.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 27e4094c0f679e37dd954d1ebc9e3f15892bcc81eeae56a6f3571935dbcd74d3
MD5 a37565156f6e8654f0a33cd005797abd
BLAKE2b-256 3cc458e8e72b8dc3392c2904cdb98ab53b41100c7649a8fbe82187813453b1e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for submine-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0d60ef0a5d993ec29ac9924af49bb3a35d19c426d3efff0926737dc34183a79
MD5 c909f64ce44766b4ba4e043aebfcf111
BLAKE2b-256 ecc235a5534aa02bdf2a07c337e88ea6614eafdfe1c0bd9fb03f96f0dc7840fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: submine-0.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 298.0 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ab664defc1c8181363b156e31a11919f43614826943bdf65bebb4e63680eb8b5
MD5 33455dbca85e90b705be35ba17c384a1
BLAKE2b-256 4eabeceda74f8f2257eb30a8dc3a09784d6b034d4c31707e08324a56da8893db

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: submine-0.1.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 269.8 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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 704426b9c3550c5f410a984f05796a29c5f3274eb6ebc0c19243053b887e3126
MD5 2c367aaf56da2bad672df1151ec4c78b
BLAKE2b-256 26f6c0bc0e7f86921ee1189318719603abd50589cf03f3cf9c4b8f6aba89e9c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for submine-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6a9d7cf82365ca628fadeadd36ba58ed400ebc8dc4c8cf4f600b30d7dd4e0d62
MD5 a3758c3470b365d1cc7f15ef92a733cb
BLAKE2b-256 975f663aeb58f87b6a0b2b5aa93c6e072dcf1319aac7785d6946de2fc3a104b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for submine-0.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c90cd857504ddc16c9fb1945d474514f5d580268afb9858dd8463fcc768f30f6
MD5 be2dacf30d9bb9ae6d2b4f894581ce8f
BLAKE2b-256 2b9c99d73f242d968b2058a4158dfc72ba9c53c79b3fb5777b9384729532c28f

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for submine-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91219c9fc544a8dda955f8a099e14ddfcbbd2642b98da710c9355441c8abbabe
MD5 bf3dfcffb2d931fd83ddb34f28258b69
BLAKE2b-256 b89aded5c698055a232ca4fa06c0fc542c551e1625f446f392bcbad437b78694

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for submine-0.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 20b132a004b60da019144c22531c98c59abb6e5761ce78e2c46baadc27143271
MD5 0a5fd46b3381beec122e21d769e8117f
BLAKE2b-256 61fff0bce565a7b5b0c05f154592bbf378f5ce2b53696d531a7226fa3efc29dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for submine-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af8ac4a8b7845b18e31e8bf144ed9aa565a874ac34aacac7dd4a63eb7573e9be
MD5 759e881118849643986394104794568e
BLAKE2b-256 65a3e51d22cf823c1f9917f67f4f395214f77a19948bf2b0ca679cf922b93b1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: submine-0.1.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 298.9 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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 94ebafb62d6e6103ea0b179b3e19e18bd732e76e57f3db75fcba4d3d87483791
MD5 ce0a045131a35f819ff6149551ce335c
BLAKE2b-256 c47d808030688e7aa1b2977bdf28030a394846a85d5dcb4ad7f8755b114c0644

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: submine-0.1.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 270.2 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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 615b0db399a12d43fe962d5a8fe3c06f64baecaac01778d26321e0898683feea
MD5 fac9c67c08c09d0d16bda277f834a8ae
BLAKE2b-256 98cd5c4bcc796906b6838fde0ab69d5c4051f9ca650ba46dfb0f5e0444bc2c99

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for submine-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 756fe0ed59c99ce4fa8f939d4f74a568cbca89a6ee7a4f77c775de90f7a3251c
MD5 26f0955afc37ad13e11a125924259739
BLAKE2b-256 2cd2c978019f5f5954e279a5ac6feb8046374ccbeb912478c9071afaf809191b

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for submine-0.1.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cadb899e887d95bc18af5c052c90ec7b3020d3ce08a47331ebb7d2c7888957af
MD5 63af818fbc74f4c977c9155960ce361d
BLAKE2b-256 5d9a58b4954e30718a69b90e4cf5cd0a28d8567297a98b71aee3b04db702d8dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for submine-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 62ca0486cd5320135c3aafcd92cb89846ad42f282d749b0ef4ee1524926a76a0
MD5 deeafa5e754bc70bda127f1b637b0c00
BLAKE2b-256 c69aff1f24f1ccd710890bd4ad9a625bb0d9e964911431984f0d2a1b44bcae15

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for submine-0.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 909e1aced82c13a006d5f67f9dea033182ce48e645c0fc9ab98a87a122a29b5b
MD5 76ff1b6d89373949091d95025e8e2f06
BLAKE2b-256 3f678ce7d4e906cf8a789f02cf592c5f2ee4aa6876605c4144e52b16eefce4dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for submine-0.1.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a69c7dd17a4ec9fada40aed7ecc49dcad698ff4f15669714a2bb535874fdcc3
MD5 4b36faa56ee425f0c278cd9cef4f8cd6
BLAKE2b-256 a425e2010181a24af9d6341c4dde26651ef5297d0c7b18dcdcd0487f9fc5af91

See more details on using hashes here.

Provenance

The following attestation bundles were made for submine-0.1.1-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