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.3.tar.gz (100.0 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.3-pp311-pypy311_pp73-win_amd64.whl (309.7 kB view details)

Uploaded PyPyWindows x86-64

submine-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (473.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

submine-0.1.3-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (507.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

submine-0.1.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl (272.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

submine-0.1.3-pp310-pypy310_pp73-win_amd64.whl (307.0 kB view details)

Uploaded PyPyWindows x86-64

submine-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (470.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

submine-0.1.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (504.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

submine-0.1.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl (269.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

submine-0.1.3-pp39-pypy39_pp73-win_amd64.whl (307.5 kB view details)

Uploaded PyPyWindows x86-64

submine-0.1.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (470.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

submine-0.1.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (504.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

submine-0.1.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl (269.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

submine-0.1.3-cp313-cp313-win_amd64.whl (309.0 kB view details)

Uploaded CPython 3.13Windows x86-64

submine-0.1.3-cp313-cp313-win32.whl (279.8 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

submine-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (472.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

submine-0.1.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (506.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

submine-0.1.3-cp313-cp313-macosx_11_0_arm64.whl (269.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

submine-0.1.3-cp312-cp312-win_amd64.whl (309.0 kB view details)

Uploaded CPython 3.12Windows x86-64

submine-0.1.3-cp312-cp312-win32.whl (279.9 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

submine-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (472.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

submine-0.1.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (506.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

submine-0.1.3-cp312-cp312-macosx_11_0_arm64.whl (269.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

submine-0.1.3-cp311-cp311-win_amd64.whl (309.8 kB view details)

Uploaded CPython 3.11Windows x86-64

submine-0.1.3-cp311-cp311-win32.whl (280.8 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

submine-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (473.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

submine-0.1.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (507.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

submine-0.1.3-cp311-cp311-macosx_11_0_arm64.whl (271.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

submine-0.1.3-cp310-cp310-win_amd64.whl (307.2 kB view details)

Uploaded CPython 3.10Windows x86-64

submine-0.1.3-cp310-cp310-win32.whl (278.3 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

submine-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (470.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

submine-0.1.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (505.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

submine-0.1.3-cp310-cp310-macosx_11_0_arm64.whl (269.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

submine-0.1.3-cp39-cp39-win_amd64.whl (308.1 kB view details)

Uploaded CPython 3.9Windows x86-64

submine-0.1.3-cp39-cp39-win32.whl (278.6 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

submine-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (470.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

submine-0.1.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (506.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

submine-0.1.3-cp39-cp39-macosx_11_0_arm64.whl (269.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: submine-0.1.3.tar.gz
  • Upload date:
  • Size: 100.0 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.3.tar.gz
Algorithm Hash digest
SHA256 ecd2c6a6516ed56a0db9b29e136dbe428b08f02ec8dcfe9fc92e9a005f4c71c6
MD5 e9c49013ceb3990cba56af0cc540df17
BLAKE2b-256 6f53ebc4af391ce3c43827bea4aa517e4ed2988501ee3ae1ae182cc9fe554005

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for submine-0.1.3-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bd39df02c52e852adab39a2a34a650b54d6bbd03e3e5ac70fc50670ec5cb7d15
MD5 898aa1a9f987a833b914cc6cfd64d661
BLAKE2b-256 166d63577c62255019a4d20199bef188331fcc287c8d8584f590bc78552223ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for submine-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7674ebc6c88a295cb39cfc2963a680c0c3021719a33968902f58c9966797b976
MD5 4850e4cb4ec406879d50036b88b69dcc
BLAKE2b-256 832ad3b0d77b92f64c0956dc2f33dae5f0a2d74dd20538edc484975e3ef4e83a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for submine-0.1.3-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6e5d5f7b236f2749dd668ce9ae275db1d13bfde71000b44a9cbdc3abc66f4082
MD5 03e2571aaf1106b6f1583a7ef76e0dad
BLAKE2b-256 4fc51cf304bfac78a1d7a55284485b2c332f4b65c38d5df51f4e04d68ce9077d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for submine-0.1.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d025faab8273cb029ccca8e4496cbf8005f7d7cd329492d510dc21703b52426
MD5 a3cd74375afa33e4d17361ab05a3980b
BLAKE2b-256 091ce94966aa8e036a64597c860685a908a58c57d0bb7c92ad328a64ff447863

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for submine-0.1.3-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 df622da2477b8f7db02b037d20b170d36885f232f9e686f963090490dabf997b
MD5 52e3de145c72b136e06e7adc14f762c9
BLAKE2b-256 fad3866498e4c97d0265445bdc9e1dc3b0412a5c68f1e5f36bf685e136bd2bce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for submine-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b759b99ae18252192f4e1290bd11d7e0d97fba9a326961a43bcfa8c42a8216f4
MD5 ff2496f699bb5639fffd013297daa44b
BLAKE2b-256 10619e5eba071b1c965b4f6a32e1131ab2cbb42b2a0e0b1fc86d87d3401ecd7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for submine-0.1.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3a069f1d9b9ac738c059b3d89ab6c8795090f9ef4e639e1488dd8ace3e44f606
MD5 6d0a12d1f462bd8d0444e1704037aba7
BLAKE2b-256 49fd416a9057c721608e5ad92037020f3153482768ac077469bd0cab464cce76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for submine-0.1.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e17fab8920fe95bfe46c0f7dc97ef337c18cce3a8f933c1887c5be2b03b18c8
MD5 fdadcdb2e436ed9be7785e82f9ba8d04
BLAKE2b-256 8279a2c850a96209722d9c9bcd6c3eeb972751058596f19d56e780406e9c1809

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for submine-0.1.3-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 01fcfc3ef5d1828a47e69213a0874d1959e72c1fe9c419592a38cc5919f93fee
MD5 0f64b1669a2c5c1b07148a29a581188e
BLAKE2b-256 40519c5c2c53b61a30df991841feedb313f5dd733758bcad3ad1e3d1d2429fe9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for submine-0.1.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fffd3da5e60338ac87e8b41208eb2ab6d977ee73052e420826e285d1687a6a60
MD5 673438c697727300e4ba253748671921
BLAKE2b-256 e6f11ba798a4ba443c066e2e8dda42845431e312ba2fd82c7a19448b586bd1f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for submine-0.1.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1f9678de51c335b62da38f91a5ff9e6f12d6dc2fbaf3275f23aa9adc595f2915
MD5 072b0347aeb030476ec16b971e5b161e
BLAKE2b-256 36ec44a255fcfb9186cf6840df6ecf2209ae85764a54bde3a867dcf18d662a3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for submine-0.1.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61d2cec0fd4eb6fdf0d37f5b33e6cb32785d09165def0394baf75ce0533d9e3f
MD5 b24b533c04541a83902a66965b6c8d54
BLAKE2b-256 9d1117044ed353407026f8ceb2c68d9463b36d6c19a1078eda124c5067c132c6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: submine-0.1.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 309.0 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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 53fe19864f03e0405cd9f254f0bcf779bd885ed8baa8bb3c126591cb36698a69
MD5 44d275af84ea5c7a73493dfb5d620c3c
BLAKE2b-256 b29651a0b2dfcbbe9e1e83b9d3d5b4a37122528e170032759d9efef6c7414507

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: submine-0.1.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 279.8 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.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f2c66148b345d5ac462e533ceb4a0837e8dcdaf52d4137cf210d94388be5376a
MD5 80ebbecd98b54cf76a4d4ab144693a2b
BLAKE2b-256 f1ce2ae0fcb739dd15cbddb6a2eb71b617b16c98851d18b338eb8646f21e1eb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for submine-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 097461ade2fb7f204e21f0f5b7b3d717edfd5b385443bd1a9b75810db1462050
MD5 b13ce58687057c39dd0a7301ab7f0967
BLAKE2b-256 7da14632d63cf9b4fc26a94b1ea97d2afd59fa50ccc0f1b812cfb1b1f6d0fcfb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for submine-0.1.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9a22caf842a32e104b5f005ddbbb6c93b80faf5817434485a01ae02a1cc5b855
MD5 15a0987ab81b18b72e2dfbabdd17de25
BLAKE2b-256 42d7625e07017ab267ce925e9ab6bfb3e06653ae26a9802ad9bdd5a0ea2abc37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for submine-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9178e9c534360a98e1d0c9909984d0d910db95d5055b75f57543146ad8ad259
MD5 66e88fd681c1a5e79c57f8973dc31898
BLAKE2b-256 8798afeccf8d16fec82d9eaa44cc97a541125b521c8a729d91814afef92cce32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for submine-0.1.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b70baf2875c2646bc0fed2b9ff38fd1936d879b9a667404e60e6b0e03c25a1cd
MD5 5187e5a2e3e690caadecd23c85dbd02f
BLAKE2b-256 a9ad103a6207da2b787eee3742b177630de3642fd34a7c5b3616d5062644c9b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for submine-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5370c6e3a08480630e87004ecf2e78acb9815ea5361d6b4778aa102e79d12f19
MD5 982c6ae8b1a3d3a959e0eebcd084ca58
BLAKE2b-256 ebfa8779fde8cbfbad56bc794dad073acd262069b9b8c7d678b569211f800834

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: submine-0.1.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 309.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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b4c017ed76c2469858179c80857d9bced03f34fcc5c92caa1c0121c1f1dbb535
MD5 301730cdac3a9cddcbb75d456d1a001c
BLAKE2b-256 8b6380536a280ffa52f42e46b2c4b8cbddd72eb819f10891e54fa91c42fd705a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: submine-0.1.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 279.9 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.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 821008193fa0d8417e5d85cb8970d99b403241970ad3a248acc7b50e4c62bb72
MD5 f51b248926f59e5644010a0fb94c705f
BLAKE2b-256 2630ce030fb0f021554946e60d55066bf7a52d18ee10f037997610f86a1ee380

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for submine-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1117bb37c846fd33ef70b5592289eadfe6873d664804951c9fe26141d84fef72
MD5 348193b8fedd1627593db5cc8a48fd1e
BLAKE2b-256 1a9690e4529a69f1c5b871a2a1b03ae63459e28ca600c73434bdec8e796fe043

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for submine-0.1.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1c6e7faf184dcd6f1ee1577404dbf281eddd7c4953eb9644bc1ca631ff8ea31c
MD5 7398d3fc76c095ede3b9700fc21597ed
BLAKE2b-256 15fce25663513e3f2c64ffb6454d08df9f8a3a2257ffed2574007a0597863d72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for submine-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 67646e3e39ee8993983abec9f0602276cd9b09b6f385dd4cf5a617e75ee7c9be
MD5 dd26748ba340e7f42e19ea618ffb455c
BLAKE2b-256 f338d7968220a123cf3dda3692d5b6ac8248bd55cb24cb6d08bb655782cf7be3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for submine-0.1.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5d9e89bfbe55c37dcb54cdcab526ddba66c07e56eb0f64febe9517c7b0782f9c
MD5 77022bc63a912b54a0d73b475166053a
BLAKE2b-256 2882892b3d679de2391f1ae7a24c669dac20fcfd591b0646884af74cb594339f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for submine-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0bb56c0e6457eb2da49363bc82892026742ec3cc5e9e94b396b1500cbc73ae7b
MD5 138a1f12dd7b9038ea0d3ab16b7b0b34
BLAKE2b-256 299f07127e4c7ce21abb80dd2df161943e490f9e30111cf8a26a288fb2a07734

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: submine-0.1.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 309.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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6e295481dc1a00488a699a8e36371e61eea94298b164ff2424a9373e7eb82d8c
MD5 a09e25ba761dab75338a6f8be31d9e24
BLAKE2b-256 d66b972d46d571cfbf8a0b5a54c9bf5ef393fbdb36a1caf1988fe62081362d46

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: submine-0.1.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 280.8 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.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 55d288045553603b65e210f68d785c346d998b99b5e80a340e4c3ae19e04d2e4
MD5 f78321f9a69e7c6c33311212231599aa
BLAKE2b-256 91e50b920744c72f37c592f457d1cb202a255e4dc7e8a3d3a2b3afbb23f6da7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for submine-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1dc6e12f7b3983dcc26f98cff2203d0be7ce495e45f664088c1235c72417ad55
MD5 98495c97e2cb6a102c0928e9aa92fd7a
BLAKE2b-256 7e911034f3b72dc84b0db04bec6ad45a9cbb041815a3eb7ba4a7ac59595bdcc3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for submine-0.1.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3ff9056373a2c8a8eff9e84fcc4b9dbd927f88d3fa66965a23e3692b39e5340d
MD5 ef147add9738ce3fb71aa8103999065a
BLAKE2b-256 45b186d3d7f05f97f70a8d73ffcdb8b44a14bc978030436a63c795f3fd0ce7d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for submine-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c66fa0dc0163e5e89a5747df9937880446c1b91fdc36a45da2a45783ecc3efc
MD5 e63ebdf74fc439c2b418298d44678389
BLAKE2b-256 2c8268e76dbce333c5cfe975cb6d9de75dfb80e3f55480ae4918e73db85da0c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for submine-0.1.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ba63f1257537c3b4cf0e70d98a75ac8bbd60075a031a18394cfdd8c33b39088f
MD5 a4931a0a81363fd7569a1aa306c19cf4
BLAKE2b-256 c3474360963f38f9187b00507e5f8176dfb32a92ee8b81d257edb47a7a55c6de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for submine-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 518cb5f43bac36ce5ad95fa7b2fe11c4b6ed54b80369f80fb7a5e3120e1290cb
MD5 c4c5d2a38b2d3d23d10c7e27e30e9911
BLAKE2b-256 63926d29b7a19f5db245cbafb068539f8c6bbd47d275a18d0b16f1a26c8b9948

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: submine-0.1.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 307.2 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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2f00a62e5352efdf240306804bb6e559cf2adb9de201d3a0836a705adfcc5e12
MD5 f9fe940e121150a58f7e3304361d0b80
BLAKE2b-256 bf9b40ddf480684c4b010ec9b9cf8d8409c1a5b4c291dd52325a9a236dd82d87

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: submine-0.1.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 278.3 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.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c14b21efc576039418182ed04fef662c220029863b1f3536e6079b2e56a31e0e
MD5 b0f0fbd3815973c6b423ecbecc823817
BLAKE2b-256 8e3d4ab0cc3b361937e0e02fe1d1ee23a864c1c825dfc8428ea41483195dbfc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for submine-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d31ff9e7dca51c17ef4b93a050c93554f77f0c84e17d410db2474eecaa9f29c6
MD5 37d300097f8f25df418145e210fb8ebe
BLAKE2b-256 aa0bc6e4bfe4a433d3b4e69ab78051e3668e4a8b8a3b422396022182c777a829

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for submine-0.1.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aececf1b7756891adc98c076e33015b668472558677f3c86842ffb89939130ef
MD5 816ea665e10474f3d90afbdbe236ae6d
BLAKE2b-256 fd4282d9e150bab764eadcc2c82a06191e7f929e7b4e6710fbf8535a30fa3524

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for submine-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db9ab7997b96d05ab0c0d512e0254a52fc4e2c44062cafaa4a74b976feeda2a4
MD5 e17225ef00f1f27e530cc35eafe9b16c
BLAKE2b-256 59c7ba81a54912e7394397ee024e8295a896dd81cd0fdb5f27497aff61fc69de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for submine-0.1.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8624201dffe8842756a404fd0d172ee33ffc8d8e29f934354ac4b1e99c0f70e1
MD5 3fa3adc649a7139918c8b55f0b302f61
BLAKE2b-256 dc1aefafe91f006114fd9722e855f162749f08fb460810a1a77e6493c6069dde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for submine-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 743bc32b520283472b0eb119e47cbc53914be123aebc3c90f94c67e8aa4d8033
MD5 0b69e97be0b18bb30266334876f57af0
BLAKE2b-256 2149a173a4e142ce6017558b97bf6fe8de7422902aa56db2c33c327204b3cb0e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: submine-0.1.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 308.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.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c5d72dd1fd748296c13cd53dea46c9fc3077f1ecf51e42aadbde1f70b19e219b
MD5 372cbf0fb7a75a2b6e1fa0898bd36275
BLAKE2b-256 fa6ae84e34ac8d3ad6c84c27062c883abadca335c8283495e3ec5a7c3a25d887

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: submine-0.1.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 278.6 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.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2c6f3dfd1e5543c89adadce0557dd09d4f6d9419321eaf848e3182e9b0408ef0
MD5 2ccba99cec91ec694ceb85ff7ea36fae
BLAKE2b-256 8191c8a158be84834a5b75d7abf24c62c6a23d02f5cf7a99b1233e7954c507d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for submine-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e830507fe4d4518b0793c85fc658969599e34bafd0ce3033076c1e3c951984af
MD5 6f76128fe41a3c76a258c1b9a78cb300
BLAKE2b-256 c6d3d7c0e2280e851df863b5b3045731e53acfefdfb667d9a41a412ec4f376ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for submine-0.1.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1ef9d5d40a885ecb24d713dd357ec75ba4611e13ef170454c0a2668111d435e7
MD5 63718fdbfa7a830c2c14c42da9f62755
BLAKE2b-256 5d06d32dc2452436ded81f8acf6dcd9b630841b7ac85153f8b7656af40bd8a94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for submine-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8612addc913f50d11a37926e5c8eb42bf057d2a9730c77c030b24a070a62b86
MD5 01511284d3ec1acdf26ac7bb464d4f18
BLAKE2b-256 9724f780676ff13990d8ca28ef1429c4fb23e91326287c735029a7ef44444e04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for submine-0.1.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c963100f2b67f15a50514dd7e933cb24bd3e8d8ac19df6d90500db1c306ce040
MD5 11c4098d886359a6f03d848899ae982b
BLAKE2b-256 27fe942c1b32d3a98a9b6d1fe5288ddafe2429eb5b7e37784dcfedfdba10c3de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for submine-0.1.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d09681049dcaccef326f6ab6f28245ba3984c7fd3d1b97540ced76ccdca8c28a
MD5 a609ec58624a762ce7478743bdce045f
BLAKE2b-256 3f903efcec28e8b2d1c205da78f98590da08df110977f25267d9a4f24bc5100a

See more details on using hashes here.

Provenance

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