Skip to main content
https://img.shields.io/pypi/v/grimp.svg Python versions CI Status Codspeed BSD license

Builds a queryable graph of the imports within one or more Python packages.

Quick start

Install grimp:

pip install grimp

Install the Python package you wish to analyse:

pip install somepackage

In Python, build the import graph for the package:

>>> import grimp
>>> graph = grimp.build_graph('somepackage')

You may now use the graph object to analyse the package. Some examples:

>>> graph.find_children('somepackage.foo')
{
    'somepackage.foo.one',
    'somepackage.foo.two',
}

>>> graph.find_descendants('somepackage.foo')
{
    'somepackage.foo.one',
    'somepackage.foo.two',
    'somepackage.foo.two.blue',
    'somepackage.foo.two.green',
}

>>> graph.find_modules_directly_imported_by('somepackage.foo')
{
    'somepackage.bar.one',
}

>>> graph.find_upstream_modules('somepackage.foo')
{
    'somepackage.bar.one',
    'somepackage.baz',
    'somepackage.foobar',
}

>>> graph.find_shortest_chain(importer='somepackage.foobar', imported='somepackage.foo')
(
    'somepackage.foobar',
    'somepackage.baz',
    'somepackage.foo',
)

>>> graph.get_import_details(importer='somepackage.foobar', imported='somepackage.baz'))
[
    {
        'importer': 'somepackage.foobar',
        'imported': 'somepackage.baz',
        'line_number': 5,
        'line_contents': 'from . import baz',
    },
]

External packages

By default, external dependencies will not be included. This can be overridden like so:

>>> graph = grimp.build_graph('somepackage', include_external_packages=True)
>>> graph.find_modules_directly_imported_by('somepackage.foo')
{
    'somepackage.bar.one',
    'os',
    'decimal',
    'sqlalchemy',
}

Multiple packages

You may analyse multiple root packages. To do this, pass each package name as a positional argument:

>>> graph = grimp.build_graph('somepackage', 'anotherpackage')
>>> graph.find_modules_directly_imported_by('somepackage.foo')
{
    'somepackage.bar.one',
    'anotherpackage.baz',
}

Namespace packages

Graphs can be built either from namespace packages or from their portions.

What’s a namespace package?

Namespace packages are a Python feature allows subpackages to be distributed independently, while still importable under a shared namespace.

This is used by the Python client for Google’s Cloud Logging API, for example. When installed, it is importable in Python as google.cloud.logging. The parent packages google and google.cloud are both namespace packages, while google.cloud.logging is known as the ‘portion’. Other portions in the same namespace can be installed separately, for example google.cloud.secretmanager.

Examples:

# In this one, the portion is supplied. Neither "google" nor "google.cloud"
# will appear in the graph.
>>> graph = grimp.build_graph("google.cloud.logging")

# In this one, a namespace is supplied.
# Neither "google" nor "google.cloud" will appear in the graph,
# as will other installed packages under the "google" namespace such
# as "google.auth".
>>> graph = grimp.build_graph("google")

# This one supplies a subnamespace of "google" - it will include
# "google.cloud.logging" and "google.cloud.secretmanager" but not "google.auth".
>>> graph = grimp.build_graph("google.cloud")

Release files for grimp 3.17

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for grimp 3.17
File Size Uploaded
grimp-3.17.tar.gz 832.9 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for grimp 3.17
File
grimp-3.17-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ x86-64 Details
grimp-3.17-pp311-pypy311_pp73-musllinux_1_2_i686.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ x86-32 Details
grimp-3.17-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ ARMv7l Details
grimp-3.17-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ ARM64 Details
grimp-3.17-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ x86-64 Details
grimp-3.17-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ IBM System/390x Details
grimp-3.17-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ PowerPC 64-le Details
grimp-3.17-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ x86-32 Details
grimp-3.17-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ ARMv7l Details
grimp-3.17-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ ARM64 Details
grimp-3.17-cp315-cp315t-win_arm64.whl CPython 3.15 CPython 3.15 free-threading Windows ARM64 Details
grimp-3.17-cp315-cp315t-win_amd64.whl CPython 3.15 CPython 3.15 free-threading Windows x86-64 Details
grimp-3.17-cp315-cp315t-win32.whl CPython 3.15 CPython 3.15 free-threading Windows x86-32 Details
grimp-3.17-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64 Details
grimp-3.17-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-32 Details
grimp-3.17-cp315-cp315t-macosx_11_0_arm64.whl CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64 Details
grimp-3.17-cp315-cp315t-macosx_10_12_x86_64.whl CPython 3.15 CPython 3.15 free-threading macOS 10.12+ x86-64 Details
grimp-3.17-cp315-cp315-win_arm64.whl CPython 3.15 CPython 3.15 Windows ARM64 Details
grimp-3.17-cp315-cp315-win_amd64.whl CPython 3.15 CPython 3.15 Windows x86-64 Details
grimp-3.17-cp315-cp315-win32.whl CPython 3.15 CPython 3.15 Windows x86-32 Details
grimp-3.17-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.15 CPython 3.15 Linux glibc 2.17+ x86-64 Details
grimp-3.17-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.15 CPython 3.15 Linux glibc 2.17+ x86-32 Details
grimp-3.17-cp314-cp314t-win_arm64.whl CPython 3.14 CPython 3.14 free-threading Windows ARM64 Details
grimp-3.17-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
grimp-3.17-cp314-cp314t-win32.whl CPython 3.14 CPython 3.14 free-threading Windows x86-32 Details
grimp-3.17-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
grimp-3.17-cp314-cp314t-musllinux_1_2_i686.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32 Details
grimp-3.17-cp314-cp314t-musllinux_1_2_armv7l.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l Details
grimp-3.17-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
grimp-3.17-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64 Details
grimp-3.17-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ IBM System/390x Details
grimp-3.17-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ PowerPC 64-le Details
grimp-3.17-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-32 Details
grimp-3.17-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARMv7l Details
grimp-3.17-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Details
grimp-3.17-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
grimp-3.17-cp314-cp314t-macosx_10_12_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 10.12+ x86-64 Details
grimp-3.17-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
grimp-3.17-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
grimp-3.17-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
grimp-3.17-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
grimp-3.17-cp314-cp314-musllinux_1_2_i686.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-32 Details
grimp-3.17-cp314-cp314-musllinux_1_2_armv7l.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARMv7l Details
grimp-3.17-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
grimp-3.17-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64 Details
grimp-3.17-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ IBM System/390x Details
grimp-3.17-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ PowerPC 64-le Details
grimp-3.17-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-32 Details
grimp-3.17-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARMv7l Details
grimp-3.17-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64 Details
grimp-3.17-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
grimp-3.17-cp314-cp314-macosx_10_12_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.12+ x86-64 Details
grimp-3.17-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
grimp-3.17-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
grimp-3.17-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
grimp-3.17-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
grimp-3.17-cp313-cp313-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-32 Details
grimp-3.17-cp313-cp313-musllinux_1_2_armv7l.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARMv7l Details
grimp-3.17-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
grimp-3.17-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
grimp-3.17-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ IBM System/390x Details
grimp-3.17-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ PowerPC 64-le Details
grimp-3.17-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-32 Details
grimp-3.17-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARMv7l Details
grimp-3.17-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
grimp-3.17-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
grimp-3.17-cp313-cp313-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64 Details
grimp-3.17-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
grimp-3.17-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
grimp-3.17-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
grimp-3.17-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
grimp-3.17-cp312-cp312-musllinux_1_2_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-32 Details
grimp-3.17-cp312-cp312-musllinux_1_2_armv7l.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARMv7l Details
grimp-3.17-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
grimp-3.17-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
grimp-3.17-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ IBM System/390x Details
grimp-3.17-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ PowerPC 64-le Details
grimp-3.17-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-32 Details
grimp-3.17-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARMv7l Details
grimp-3.17-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
grimp-3.17-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
grimp-3.17-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
grimp-3.17-cp311-cp311-win_arm64.whl CPython 3.11 CPython 3.11 Windows ARM64 Details
grimp-3.17-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
grimp-3.17-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
grimp-3.17-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
grimp-3.17-cp311-cp311-musllinux_1_2_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-32 Details
grimp-3.17-cp311-cp311-musllinux_1_2_armv7l.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARMv7l Details
grimp-3.17-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
grimp-3.17-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
grimp-3.17-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ IBM System/390x Details
grimp-3.17-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ PowerPC 64-le Details
grimp-3.17-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-32 Details
grimp-3.17-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARMv7l Details
grimp-3.17-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
grimp-3.17-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
grimp-3.17-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details
grimp-3.17-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
grimp-3.17-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
grimp-3.17-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
grimp-3.17-cp310-cp310-musllinux_1_2_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-32 Details
grimp-3.17-cp310-cp310-musllinux_1_2_armv7l.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARMv7l Details
grimp-3.17-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
grimp-3.17-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
grimp-3.17-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ IBM System/390x Details
grimp-3.17-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ PowerPC 64-le Details
grimp-3.17-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-32 Details
grimp-3.17-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARMv7l Details
grimp-3.17-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
grimp-3.17-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
grimp-3.17-cp310-cp310-macosx_10_12_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.12+ x86-64 Details

Total release size: 253.5 MB

Release files / grimp-3.17.tar.gz

Download URL grimp-3.17.tar.gz
Size 832.9 kB
Tags Source
SHA-256 checksum
How to use checksums
5161e03c6f518fe4da43b06c97ff49a1e224ecb0e4b9fd6ef48235373d1b7b33
BLAKE2b-256 checksum
How to use checksums
ad2e95736b7c984705ff5ee376f07c6e71bb80fcbb22c8fa3b8c1cfbfa919d5c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl

Download URL grimp-3.17-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Size 2.5 MB
Tags Linux musl 1.2+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
1334e8ba5d1b57dec70e8990ba4c8c829fc7e999ac4345da45348488dc84b814
BLAKE2b-256 checksum
How to use checksums
16d6acf7dc5d08ecb24700071c6e807b396603148b98f111df412ea1502606c4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-pp311-pypy311_pp73-musllinux_1_2_i686.whl

Download URL grimp-3.17-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Size 2.5 MB
Tags Linux musl 1.2+ x86-32 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
a88e38dc9e5410a951fd97595816396e3e6f05d2c2a43665a777a9558ba5dde5
BLAKE2b-256 checksum
How to use checksums
7af79f3c7f2bef0fdde9a4a3627cf2c9c79e0f6fc3f637d694b384e3fd0237ff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl

Download URL grimp-3.17-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Size 2.5 MB
Tags Linux musl 1.2+ ARMv7l PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
8575b7a82983f138fd06ebcafce89797fce36f69b6381f79b05714b8b9fcf2fe
BLAKE2b-256 checksum
How to use checksums
797add2c5ef860cecfbcee7cc6eb00c1a2185a8ce12227aa4015b189d7ee1796
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl

Download URL grimp-3.17-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Size 2.5 MB
Tags Linux musl 1.2+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
ff7dcc4746fd8f8b8e8104db19cd15665c61c6bd56dc492e632ac336b07efd77
BLAKE2b-256 checksum
How to use checksums
aeb164de4ca73e8c9bd8eed7f6019f18e96f4f8e02417bdb1f9208a3b55662bb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL grimp-3.17-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 2.3 MB
Tags Linux glibc 2.17+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
788d5ecf1ab806e18b788952cb205e135e4da4ae00882f552dada144bc6f9b68
BLAKE2b-256 checksum
How to use checksums
feaf8ff5b3ffeb062a5337a8e124a0909cb2866e6448858ffa14bef8cfb8e27d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL grimp-3.17-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 2.4 MB
Tags Linux glibc 2.17+ IBM System/390x PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
935beb0f0b920d3629b9da4fcc457f70e76a9fd159eefd7d2c57ab99e712d80e
BLAKE2b-256 checksum
How to use checksums
230da069e17c524d04f9a01d97ad8f2bacd3947af300e5d968dc6854278424b1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL grimp-3.17-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 2.6 MB
Tags Linux glibc 2.17+ PowerPC 64-le PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
8129c210bdc73547ec78d11b1dfa48bd74e9da62157b0458c0ed5fe698d6c403
BLAKE2b-256 checksum
How to use checksums
73902d291b17529adb5fb3fc579dfeb0c7ec5e662e6a9d5eb77d3ea12300daf0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL grimp-3.17-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Size 2.4 MB
Tags Linux glibc 2.17+ x86-32 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
28e88c83f3772681e3aff138fd7865b551d436d25e30d85fbed05f92cf05fefd
BLAKE2b-256 checksum
How to use checksums
999db53c545f8bb34988d26a1f690ad18228d58fa0dfad29c0353193bf99fab6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL grimp-3.17-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 2.2 MB
Tags Linux glibc 2.17+ ARMv7l PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
047955683b4113ce265b00fa4704f92b93e248390768bb45f5968aaafff0c5be
BLAKE2b-256 checksum
How to use checksums
9c13e1679bdcb44a2ae72300fb7358d2a9fe84de5b96d8d5ef4a605287f73613
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL grimp-3.17-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 2.3 MB
Tags Linux glibc 2.17+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
645f17b80f61e33969d5e8ab30c1fb1247b44d6372c64fc6b50703f438f18186
BLAKE2b-256 checksum
How to use checksums
1522e89d58bc1c96ec118e371abca8c07d4c6ad53b263e9f00e552b93aa34797
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp315-cp315t-win_arm64.whl

Download URL grimp-3.17-cp315-cp315t-win_arm64.whl
Size 1.9 MB
Tags CPython 3.15 CPython 3.15 free-threading Windows ARM64
SHA-256 checksum
How to use checksums
478aa0b696e5dd79373943e75b998fbb4ef3d146f24fe3569fa9d106ce84991b
BLAKE2b-256 checksum
How to use checksums
ac168ae9028f046bf8f48cc13f6de2de40adbcbf38fa79a3a5f265753b248da0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp315-cp315t-win_amd64.whl

Download URL grimp-3.17-cp315-cp315t-win_amd64.whl
Size 2.0 MB
Tags CPython 3.15 CPython 3.15 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
473d0e0c016ca429b9ec17f34d276db454ba4d467e3c915a46279d86ab004716
BLAKE2b-256 checksum
How to use checksums
94b76f9cdeba2c1263fb91b791ddd5e924d6c91c2485f4f16b56698802fdd540
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp315-cp315t-win32.whl

Download URL grimp-3.17-cp315-cp315t-win32.whl
Size 1.9 MB
Tags CPython 3.15 CPython 3.15 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
a7235ccffb0350647ae2b01969f552a9859fea7027032f6cfed110801269a439
BLAKE2b-256 checksum
How to use checksums
206479161f05c900f7f7f1b0acd22a730b1be9f96680dd44efeef90aa45e6998
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL grimp-3.17-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 2.3 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
7e275cee07826cf36db1914427e68afac87588f759e1dec676870234d4a250ae
BLAKE2b-256 checksum
How to use checksums
7b684551e23ab9422e2ead806c1fec9f4b3acd21a267e43bfe8e8cd7f4640dce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL grimp-3.17-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl
Size 2.4 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
92f1989ce9f9ce26b7d45381df164c62aff783add84cd7a4216a6ebba0f9f03a
BLAKE2b-256 checksum
How to use checksums
ac7632d303603157a0d98cb8bde8757e6ae8fa02d41f1d62cdf843fb2e7fe727
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp315-cp315t-macosx_11_0_arm64.whl

Download URL grimp-3.17-cp315-cp315t-macosx_11_0_arm64.whl
Size 2.1 MB
Tags CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d058fdb980475eb9e0143792d63757ddff86c5776e792866e8208cfe5e8413f9
BLAKE2b-256 checksum
How to use checksums
7198822287270c41360f66c4b5638e040afc6bbf11e9f04cf5005bbd5f3e4830
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp315-cp315t-macosx_10_12_x86_64.whl

Download URL grimp-3.17-cp315-cp315t-macosx_10_12_x86_64.whl
Size 2.1 MB
Tags CPython 3.15 CPython 3.15 free-threading macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
1bf67cb05a80796be99d1bf87e12d4421de101950c5246a8220b6c839cbf27c2
BLAKE2b-256 checksum
How to use checksums
85f6f4f84e44a9237350c41e7c77343498cb1ad843491c18f29d6811021c617d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp315-cp315-win_arm64.whl

Download URL grimp-3.17-cp315-cp315-win_arm64.whl
Size 1.9 MB
Tags CPython 3.15 Windows ARM64
SHA-256 checksum
How to use checksums
a0288dc0e8947dead5c02a246e16f3f5e5cb486348171bdf1289885a13de36c1
BLAKE2b-256 checksum
How to use checksums
96d6e1922c4c7e001210f98e0cf89bd76fea8564f590be3e9ccfe99435cfcd59
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp315-cp315-win_amd64.whl

Download URL grimp-3.17-cp315-cp315-win_amd64.whl
Size 2.0 MB
Tags CPython 3.15 Windows x86-64
SHA-256 checksum
How to use checksums
d20fbe5aab8b013b351313f8eaa3a46f4ac57677e357cb1c3d1012c606b565b4
BLAKE2b-256 checksum
How to use checksums
719879af8d51961611e13b3dabc7a3b356b27aa696e5549bb439f1d6002be31a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp315-cp315-win32.whl

Download URL grimp-3.17-cp315-cp315-win32.whl
Size 1.9 MB
Tags CPython 3.15 Windows x86-32
SHA-256 checksum
How to use checksums
65a1dc2741bef8a96ff3ff71252db8e99eac2a32e09d5e2b63597474706186ca
BLAKE2b-256 checksum
How to use checksums
306a40fb12b111c95b94db4930f35661a629532d9d12fb484db5b5ef1a6c3da3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL grimp-3.17-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 2.3 MB
Tags CPython 3.15 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
a377d5935ae9a62ccbb59e492e16624cec97cc7244c4a964b0c6f83940440626
BLAKE2b-256 checksum
How to use checksums
e6a9905a484659749f40ed797963147202cb74c3b68d8e90a7a600af55de47ee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL grimp-3.17-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl
Size 2.4 MB
Tags CPython 3.15 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
fe3e2285a2bd4e62ddb8825de37152d2dc842394d419786d3d5a803b07bb84eb
BLAKE2b-256 checksum
How to use checksums
8339bb07084f0b97da66b0aa38077bd656c4f831b4aa3f167b1c060f6a65ea5e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp314-cp314t-win_arm64.whl

Download URL grimp-3.17-cp314-cp314t-win_arm64.whl
Size 1.9 MB
Tags CPython 3.14 CPython 3.14 free-threading Windows ARM64
SHA-256 checksum
How to use checksums
28ae2ff57a9ef535c2e7054dcb18baf0cdc2dee3982367512bff34eaecb85cf0
BLAKE2b-256 checksum
How to use checksums
29d0feebddf766448932f2f1e40324fe75cf50ce6d3a21bdf87fc0eae263218a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp314-cp314t-win_amd64.whl

Download URL grimp-3.17-cp314-cp314t-win_amd64.whl
Size 2.0 MB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
91e4bbbed4d934369b83071380e1ad5f37b7f5c80b80ffa924627db8d66fea11
BLAKE2b-256 checksum
How to use checksums
acccb257d8da079a87e65d0f1b0e004fd50f31ba25e7136a3b36f896e0e338f8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp314-cp314t-win32.whl

Download URL grimp-3.17-cp314-cp314t-win32.whl
Size 1.9 MB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
37e6333ca54d4d80b5c4f2eae324774b223dbdc65994dc9bccda2985a9261dd8
BLAKE2b-256 checksum
How to use checksums
489210cc37db6149030c8cfc80fa5287f739c1e9620c8a05d1ba8dfdfc0a6c4f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL grimp-3.17-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 2.5 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
790d68157e034e7848257ef46b37550040c9e4692cea17372d3d9f87cef1d84b
BLAKE2b-256 checksum
How to use checksums
75b890cd11e346f12fb5269ff050ae825083410d3bdb54d82a3b8e955e4f9d26
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp314-cp314t-musllinux_1_2_i686.whl

Download URL grimp-3.17-cp314-cp314t-musllinux_1_2_i686.whl
Size 2.5 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
0433d177f327c31410f21845322282c832d887f1a42cbdfa176133d8422d84b2
BLAKE2b-256 checksum
How to use checksums
eaa8cf0aa245ace55dd2f6bdd3bb646ec50c294bdfe623fd51327bd27efaa585
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp314-cp314t-musllinux_1_2_armv7l.whl

Download URL grimp-3.17-cp314-cp314t-musllinux_1_2_armv7l.whl
Size 2.5 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
1688e2dbe382b6644ecc3f55053e319de70034d9dfe0809d21d441a590c320e6
BLAKE2b-256 checksum
How to use checksums
838a6c954092306e21c93c744432c3d47491c3264d3cc4b465941de5164a1cb3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL grimp-3.17-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 2.5 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
cd76fb13a534209c1777c807092f51b1570854eb49948d65cd5e1d94d80e981d
BLAKE2b-256 checksum
How to use checksums
eaedbf67bc6749abee0a1e97f8f14ee2cb19ccc435b306e22bcaac6118d402a4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL grimp-3.17-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 2.3 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
160abad142e168545be8d4cc91b2a95b4565f7571fc56f7fced69ce3589e5111
BLAKE2b-256 checksum
How to use checksums
e86ca718328adc50529135510b515c5ff1d9f94ab26ab8df9057bb1ef5ab8993
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL grimp-3.17-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 2.3 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
66b4a13edb3fe63be6f7dbbc2576786f501af9d386a5a1f60b2938f270aef97c
BLAKE2b-256 checksum
How to use checksums
ceea186a3087623f1556eb8b9d02baa00300003bb84b7b35677e3fcec34691b6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL grimp-3.17-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 2.6 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
541c9a2b7f1ad5d4f5d1597740e51058fba8ca0c1a225d6ccc6d11a8364fa563
BLAKE2b-256 checksum
How to use checksums
501b05d9964d4b47ffe0ef826bfe04b3f4b713fd623c90e424ff002cb0d8a917
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL grimp-3.17-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Size 2.4 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
c89cfe49f822a2cc9c42cc7b0f3975ecb1281970735ea31610bfa06a7e04c460
BLAKE2b-256 checksum
How to use checksums
8313cc57724307c22060e193a1dc9bc99fa14d46584c534a3936319ec579c599
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL grimp-3.17-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 2.2 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
848a92d8a63a38d79c89ab1e68fb5429d90079f39c07533ffd45ce756e7f210f
BLAKE2b-256 checksum
How to use checksums
d34cf5f001e592f8e8820086604db98373ca129e2831facad81ec0d1820a749f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL grimp-3.17-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 2.3 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
5332893955688759a9f7868c3c9e56b19bc1694ee251852d3daf54876b35c115
BLAKE2b-256 checksum
How to use checksums
e26bb70add79e9e315d111bb1643b44e1b9e1ded82888856e1ad68bc484cd635
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp314-cp314t-macosx_11_0_arm64.whl

Download URL grimp-3.17-cp314-cp314t-macosx_11_0_arm64.whl
Size 2.1 MB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
cbccf2a6cd3f89bfdfd683d9b000bd61f6936e16b6d4d6619da592c54f79f272
BLAKE2b-256 checksum
How to use checksums
ce839d7cb22fc136ad6a61bff3b74cf0b31b13fdf94e224d46ff1edd9b5b8c86
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp314-cp314t-macosx_10_12_x86_64.whl

Download URL grimp-3.17-cp314-cp314t-macosx_10_12_x86_64.whl
Size 2.1 MB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
e15340ee11e34bfaaee496cff53f8287dc9f417a94e5bdf3d6b4204305d004cc
BLAKE2b-256 checksum
How to use checksums
d259f94dd90757a2195415736f0e2be667ac4cd375fe86d875d4298661751fce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp314-cp314-win_arm64.whl

Download URL grimp-3.17-cp314-cp314-win_arm64.whl
Size 1.9 MB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
80b5b25b8d8ed6cc68dc39ae9e4c2fb64acd1a3e66434d9cf4d68c72e46d505d
BLAKE2b-256 checksum
How to use checksums
9f1d93c12ff4ce9ede9f91aa03df66128d223a4c824a13de6ab702c973fcae0d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp314-cp314-win_amd64.whl

Download URL grimp-3.17-cp314-cp314-win_amd64.whl
Size 2.0 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
0b97dc29bdca523932bbbcb425fc3df3547cf970396b293bfa960b910f3932d1
BLAKE2b-256 checksum
How to use checksums
59ceabb9ccb50972351461065ca72cd0f528837a2f398621147dfaf1013698f0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp314-cp314-win32.whl

Download URL grimp-3.17-cp314-cp314-win32.whl
Size 1.9 MB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
c8982f4fa1276e059665947156740a55a4e8e6b5a4d7f40730a7511afb608762
BLAKE2b-256 checksum
How to use checksums
5813d7666cf03c79c275020bad40ea1df8597af7877083ef5a84b5d8b566029a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL grimp-3.17-cp314-cp314-musllinux_1_2_x86_64.whl
Size 2.5 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
5c0cac76283679fe9c1fd761e63deb9bbc7ba46b32988113ecef4b13742f31b9
BLAKE2b-256 checksum
How to use checksums
cb03fc3a58d9b22b011c1c3377c1ecee127a5f642de9b20de32d3ad7213ab71a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp314-cp314-musllinux_1_2_i686.whl

Download URL grimp-3.17-cp314-cp314-musllinux_1_2_i686.whl
Size 2.5 MB
Tags CPython 3.14 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
e80b57a7d03f53e96eb0a5b0844340f99f17eede184042fb73e3ef010176ab35
BLAKE2b-256 checksum
How to use checksums
7f85a2d2e70c4f272752c395cc35b3732d82ff92c55e229d7bbd6777fd9868ff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp314-cp314-musllinux_1_2_armv7l.whl

Download URL grimp-3.17-cp314-cp314-musllinux_1_2_armv7l.whl
Size 2.5 MB
Tags CPython 3.14 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
5a895bc27105ada9b0e76a80bf9cc898409e5cc3689e73e64ca1cbd71dc87dce
BLAKE2b-256 checksum
How to use checksums
ffc1d55e9686f3797d1a2c6403d2ffec3020c67591c004304a414fe8d7a9755c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL grimp-3.17-cp314-cp314-musllinux_1_2_aarch64.whl
Size 2.5 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
5f89948029f3c7339a20bab007977194d3dbdddb27edae5c74b948d8f13191c7
BLAKE2b-256 checksum
How to use checksums
6306a08f1b16aec11f32bbc86f60e24986659ab4cfab79388c8d4b79f6a6723e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL grimp-3.17-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 2.3 MB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
566411d1ac97e1f3a3f00a13ae33aebb9abda9787d3d9914f62f73b589d84fe2
BLAKE2b-256 checksum
How to use checksums
72da6bc1f783a739afa51ffa2e235791487b5d09202501b25843ecae9833a3ff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL grimp-3.17-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 2.3 MB
Tags CPython 3.14 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
f69ce8be301299f15ca99843e89991c240a231836cf45a11c6bfc54fb9fbeaa9
BLAKE2b-256 checksum
How to use checksums
32d32b2ab7b3a4e2c17bb1e10ec37e7ee8eecce7f72b1bf6c8019dd439943884
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL grimp-3.17-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 2.6 MB
Tags CPython 3.14 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
c34b904c25359f98e3f20771256d62329ed17f1e26a254a4f5c74bacc1f3bd21
BLAKE2b-256 checksum
How to use checksums
7e4fa3bf534aa7c582a47d8cfefab5fccb50e6f4dcd327ed6a8552d344a04ffe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL grimp-3.17-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Size 2.4 MB
Tags CPython 3.14 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
cb953c21beb6ac85a59b5b54128be7fdddd89396d34b3c5705cf59829a85b431
BLAKE2b-256 checksum
How to use checksums
b44f907a130e87554d57be14c2a7cedeb818d0ef519064877297d19636735f6b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL grimp-3.17-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 2.2 MB
Tags CPython 3.14 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
8322a435b5ee97ff3db823df36cbefea569faec505cc0ca66223c27b4b44cca6
BLAKE2b-256 checksum
How to use checksums
58713768fd253e7455a83d668193055691c82d3a4d434047116c572a27d2bd39
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL grimp-3.17-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 2.3 MB
Tags CPython 3.14 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
baa385915a4c17948bfb25f77509cbbfb33795f321d1c5ca7cc602e34ed58e99
BLAKE2b-256 checksum
How to use checksums
861a1dd0d9d2751e8078547e1cb7131e13d9624a2ea60700d926b3d624c15825
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp314-cp314-macosx_11_0_arm64.whl

Download URL grimp-3.17-cp314-cp314-macosx_11_0_arm64.whl
Size 2.1 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
67ada40a5c1cf4321183c0b0cd0393658ccd04b845caed002ac81dc2fdef828e
BLAKE2b-256 checksum
How to use checksums
4bd6ddf82f4428d8bdc54ced0db244cbf5d8e5638490c3ed6a8b9f5db55dfa51
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.4

Release files / grimp-3.17-cp314-cp314-macosx_10_12_x86_64.whl

Download URL grimp-3.17-cp314-cp314-macosx_10_12_x86_64.whl
Size 2.2 MB
Tags CPython 3.14 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
0100ff6f08067c8eb8a77dd1433af5e173aea8dbf6a6b76f5372a3b49f2e0a43
BLAKE2b-256 checksum
How to use checksums
39e0e11ea5aeb62534c9706e17952d142aa844ce5659e2d66b4b8ba9377407d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.4

Release files / grimp-3.17-cp313-cp313-win_arm64.whl

Download URL grimp-3.17-cp313-cp313-win_arm64.whl
Size 1.9 MB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
206cd9f7c757b97934f48ba2b8ec6d649725fd6314d6b182dd327b19b4f35707
BLAKE2b-256 checksum
How to use checksums
e22a07fd537997281049af2390fc8641de5ae063ae4972cb6fcec85873674595
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp313-cp313-win_amd64.whl

Download URL grimp-3.17-cp313-cp313-win_amd64.whl
Size 2.0 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
d21b859c50418bdb48b403a84450650fa7aab3102f3212d00d3c21c76a982167
BLAKE2b-256 checksum
How to use checksums
8bd4af497adddfcf11f9bd4ab273625a49022bf5ba4f5fc389589f4e6edc67b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp313-cp313-win32.whl

Download URL grimp-3.17-cp313-cp313-win32.whl
Size 1.9 MB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
34369739ed293accbb674494ae932351516b316e8e85d1d333d4c51796af846a
BLAKE2b-256 checksum
How to use checksums
69f57af1dd74b9608a85274414fc423a7162844492b198ece3fe31f4e1f88237
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL grimp-3.17-cp313-cp313-musllinux_1_2_x86_64.whl
Size 2.5 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
8f395c5ab2cf554504f46680b9269b769939ab5d7ea58f93e5c341e55b1affbd
BLAKE2b-256 checksum
How to use checksums
697a33e41d9b08e63cf398d8194a9208b21788c76916b5ac6d90146e8e2ebf95
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp313-cp313-musllinux_1_2_i686.whl

Download URL grimp-3.17-cp313-cp313-musllinux_1_2_i686.whl
Size 2.5 MB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
c31660d30e79569faac05033637c1eef4595542f44ec2323af54e900030164a6
BLAKE2b-256 checksum
How to use checksums
8f99e0690b02be70f346aadfe2aa8bd7e496c773298ac58c0d0fa6376c1298b2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp313-cp313-musllinux_1_2_armv7l.whl

Download URL grimp-3.17-cp313-cp313-musllinux_1_2_armv7l.whl
Size 2.5 MB
Tags CPython 3.13 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
73aa9459a604554b1dc1618148312036679f3974bf8b0285588220307147060b
BLAKE2b-256 checksum
How to use checksums
f1d0b582238247ce51857c7ac770c3be10203c992696f3dc9153f1a979c011dc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL grimp-3.17-cp313-cp313-musllinux_1_2_aarch64.whl
Size 2.5 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
7a22b5dcbf55f1c348885e09cbe91e63baedf6ce0f89c60bb01a0475c7d0a90b
BLAKE2b-256 checksum
How to use checksums
c5b591cd378c08494fd0130e5cc2e54d60d12f53b21850e0dbccf668b6e73d91
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL grimp-3.17-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 2.3 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
6dbf2d93b0ba7f6c1efba9f5b3e07a3da0a157392c650316a5c1478b0ef7e503
BLAKE2b-256 checksum
How to use checksums
cba26474d008fa49cc650d626798cb3b6e3fa7b0daaad24884fd6bb4288f6154
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL grimp-3.17-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 2.3 MB
Tags CPython 3.13 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
f5cc64f891f71f538d3d032d6e7193f69c3a2e0ceac72c55114faee5aa161f9f
BLAKE2b-256 checksum
How to use checksums
ebd366da78504a1731237ed8befd9c66fb91037a7b82816443ca772107acf8fe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL grimp-3.17-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 2.6 MB
Tags CPython 3.13 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
75da770aeee97d26b202d7251fe7f6562e7f2793e348501b0a64ca5c50e881b5
BLAKE2b-256 checksum
How to use checksums
360f015e48ad8029f788eaa3df71b66859b2b5dc63abb8d7a2014a2b5a581040
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL grimp-3.17-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Size 2.4 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
187b092664e882d10b9f2c3da99251d0aeb99186d407ed5d20f52005832045f6
BLAKE2b-256 checksum
How to use checksums
73c0e1b0ad0d0b3d9dff996bad306542f3cf000cb86c368bfe3ac6a8bb1e2e2f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL grimp-3.17-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 2.2 MB
Tags CPython 3.13 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
b0ab1ab71d807fc6f56d82f1ab24acf2f2e0e5000e37b5540af9449e28c6830c
BLAKE2b-256 checksum
How to use checksums
5b622e16a54580fa76fb7e64e8e8e2ebb899c709a764cb29149a88eb03f2eea7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL grimp-3.17-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 2.3 MB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
bfda3e2ebb4e51beec4a3cb09bb771440f3192163107d9320e6d9ce8fe064e64
BLAKE2b-256 checksum
How to use checksums
e6127dc086132ac10a2409f158f0b0d7cc528a2ebe0a4e95bca895afe7452fa6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp313-cp313-macosx_11_0_arm64.whl

Download URL grimp-3.17-cp313-cp313-macosx_11_0_arm64.whl
Size 2.1 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
0f11566bcf388db4c79f1c7f1051f6ef150f778306350bb7d86d0c9aab32d297
BLAKE2b-256 checksum
How to use checksums
cbab2a1a9574b391c0ee62cb33a633c0d377dce1b7d19d04a7ac5d5e6872d395
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp313-cp313-macosx_10_12_x86_64.whl

Download URL grimp-3.17-cp313-cp313-macosx_10_12_x86_64.whl
Size 2.1 MB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
eb8f09da4302f05fc92fe7564f27731c0b43789d8893ae5e6be5df2b01668923
BLAKE2b-256 checksum
How to use checksums
107ab1c76982a239347bfccd2ae95b9f79d3390cd14170f62e7eb822a17d786d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp312-cp312-win_arm64.whl

Download URL grimp-3.17-cp312-cp312-win_arm64.whl
Size 1.9 MB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
ff161c9aed2ca3db9bc592157a36914ae8440d8d8f3c6986843dec11523cd700
BLAKE2b-256 checksum
How to use checksums
dd9d9b2da1ff2951e13b636673814ec7df699660f892f284bf2f3d53e991283c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp312-cp312-win_amd64.whl

Download URL grimp-3.17-cp312-cp312-win_amd64.whl
Size 2.0 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
d10ae67a1ee0af6dee937e032f3acf707741d866a67f3c71e5ec6df3b758e5c0
BLAKE2b-256 checksum
How to use checksums
a772e2544f4ba4f42f7732bdc13d60c344fd9da30eb083eb8cba2e7c155d222e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp312-cp312-win32.whl

Download URL grimp-3.17-cp312-cp312-win32.whl
Size 1.9 MB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
b1ab648732d03fa2ec4d7619d934409399bf827009c4c50f429c8d0bdd0709fb
BLAKE2b-256 checksum
How to use checksums
9d660ff96f79bb1c4ffff621f7b50babbea6151fbaad461327af961f1fa2e49e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL grimp-3.17-cp312-cp312-musllinux_1_2_x86_64.whl
Size 2.5 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
0ae6360f6b4f711abf97b8888c0269de3756ea484c829615e0c567c7bb1ce944
BLAKE2b-256 checksum
How to use checksums
b56073c088e1bee1a95a61cc3523abff149b0c211405834ca74996c76e6a3afa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp312-cp312-musllinux_1_2_i686.whl

Download URL grimp-3.17-cp312-cp312-musllinux_1_2_i686.whl
Size 2.5 MB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
5abd95dc0a8f816d2816e847adb0ab09a7e3571fd0942ea31cf5248505862bac
BLAKE2b-256 checksum
How to use checksums
0254b4dfc51d8c628f700512953c78656305a21ead767956a7fd7aa46f1021b1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp312-cp312-musllinux_1_2_armv7l.whl

Download URL grimp-3.17-cp312-cp312-musllinux_1_2_armv7l.whl
Size 2.5 MB
Tags CPython 3.12 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
7e2b4d8aebae7142c401231043113910773f289a8d6f9d719273eb719f732b83
BLAKE2b-256 checksum
How to use checksums
5b23f2b0bffa2a62a73ca8736b550161eab2b88f66e6a3c9f7def18310c2d087
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL grimp-3.17-cp312-cp312-musllinux_1_2_aarch64.whl
Size 2.5 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
e205949a5fe6b83ac1ea28525bea2b4867f2b230a851e6dfcdfcfcee1e3dda09
BLAKE2b-256 checksum
How to use checksums
eb22c00c7073a0fce1f9494c564e12705b42a1c421a50515dcf7ffd8e1543024
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL grimp-3.17-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 2.3 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
ecf26d99a35ab7b5966af56118bb9344d1fd1b972d3c45dd5012effc7a68c844
BLAKE2b-256 checksum
How to use checksums
1e7706e46d5682745570d16c051734a7edf7b3c045ad620440f635dbd86447c3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL grimp-3.17-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 2.3 MB
Tags CPython 3.12 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
2c03a30879a80950e268f03e81603b8c51dc141c944700a0a9d72b2d7484ab24
BLAKE2b-256 checksum
How to use checksums
ab5a5ef678b3f89a887a9e045dbfb5505876678323f8cf5a26f8b98d9ace875a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL grimp-3.17-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 2.6 MB
Tags CPython 3.12 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
79b0be412bc19bf298290713e5a2b459fe2a518f921591046b85ba90425bff20
BLAKE2b-256 checksum
How to use checksums
73525a280d6a9154b1f13a0c74082581cb699825535fdc194ae9ebc5d42c2252
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL grimp-3.17-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Size 2.4 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
8d55d03f5dc704b18fa7da04e7eebcc3b16b998b1e18818fb750e291b2991900
BLAKE2b-256 checksum
How to use checksums
3960487bb910bb5092a392f8b23ae8c5fde6d766bfe02e2c7a064ae9a14da30a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL grimp-3.17-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 2.2 MB
Tags CPython 3.12 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
76b1517920dd93df17f6cf0bb79a1ddf193993e87a60dec30bbe67a5139187f0
BLAKE2b-256 checksum
How to use checksums
3ea76615a81f83d8ee31c96b1d8fa9a5d12fceb82acc17a9e71b28768b8185b5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL grimp-3.17-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 2.3 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
62f61d14aedfc0df57db6f7bc826df0f77f3c7115a2a5525aa76531ce2cb9fa6
BLAKE2b-256 checksum
How to use checksums
89df53d3eb18c3197ae2bb6c8be118026870cb89b2c33f99c7157345bc5e0734
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp312-cp312-macosx_11_0_arm64.whl

Download URL grimp-3.17-cp312-cp312-macosx_11_0_arm64.whl
Size 2.1 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c7e75804d1d7f11813082b30a0cd7cf84f553c55d7c1edc28cde23656f1d1a40
BLAKE2b-256 checksum
How to use checksums
97d03ac947eb15b7c6fe615e01cdfef8152e8b2509c6d5439f7799fae1ca024c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp312-cp312-macosx_10_12_x86_64.whl

Download URL grimp-3.17-cp312-cp312-macosx_10_12_x86_64.whl
Size 2.1 MB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
7375c3aea01495839360947df321d26dcebd037ef34a641627456f23fd91c63e
BLAKE2b-256 checksum
How to use checksums
63bae2e37adeac007a42b074c9156b3a155692fc5a1a32008fb8385546e5c92f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp311-cp311-win_arm64.whl

Download URL grimp-3.17-cp311-cp311-win_arm64.whl
Size 1.9 MB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
488c0a70118c3600dd344455f280ab8d8894583f76e4091de770b019d9e30cde
BLAKE2b-256 checksum
How to use checksums
b0a53fb3e39ba1a34231bcdf27922121f864307f6b9a2f8145f17e285749d092
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp311-cp311-win_amd64.whl

Download URL grimp-3.17-cp311-cp311-win_amd64.whl
Size 2.0 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
11533e4afad7a516a4c2a6b8b3b24383fba9901c8fa0072b33450603eedc0649
BLAKE2b-256 checksum
How to use checksums
27a4b1a2a1d7c53e6f0976bc33e3225b82e8d45ad32ec528ac3e251d94172bc4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp311-cp311-win32.whl

Download URL grimp-3.17-cp311-cp311-win32.whl
Size 1.9 MB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
802ea10b9d9e7b422c83f1277286be4225402bb4d2ab31b17ab43f3e850639d4
BLAKE2b-256 checksum
How to use checksums
8ff6fec538a49b3297c0aba0386971e478522ec4b2f8fc25d6575f9579e57a36
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL grimp-3.17-cp311-cp311-musllinux_1_2_x86_64.whl
Size 2.5 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
5e4dc31f50d695091fef8013e562470cd759123bd06fad2ebb91251850ba97a4
BLAKE2b-256 checksum
How to use checksums
2152d82b1c772509c80e1f0988694e30fb4fc4888c983273c2249a82effc15b0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp311-cp311-musllinux_1_2_i686.whl

Download URL grimp-3.17-cp311-cp311-musllinux_1_2_i686.whl
Size 2.5 MB
Tags CPython 3.11 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
58ce75a40a0817bf5725f7a67cb5cc38f76f23a028e624b1125959d06db76a36
BLAKE2b-256 checksum
How to use checksums
6a815d93258181d6333ab01014884a2beca1ac39c25ddea3492b12364041eca8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp311-cp311-musllinux_1_2_armv7l.whl

Download URL grimp-3.17-cp311-cp311-musllinux_1_2_armv7l.whl
Size 2.5 MB
Tags CPython 3.11 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
bd72e76528837b634057689179aac014e3995f41d142c2e9eff8bf46f82c96e5
BLAKE2b-256 checksum
How to use checksums
c108667c2af86cdb8ed210e42ec4dfb4d0c3dd0f9e08818dfba6435742a14f60
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL grimp-3.17-cp311-cp311-musllinux_1_2_aarch64.whl
Size 2.5 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
f6cc4ba9510691dd56111894da83bca78e407037f8149f808012dd67f0b5272d
BLAKE2b-256 checksum
How to use checksums
5e3bd874409b8deacc419e847bff13e1706e7b45772cc2ad80fdf44d79f0d337
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL grimp-3.17-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 2.3 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
c615cd6f08965831adb5383c9214054003eb2b5ee2f4c466c388a9b87835cb0e
BLAKE2b-256 checksum
How to use checksums
baa20e5aa9fc7b3d18620b36b68c2645b9cb12364e316bc827452e2447c90709
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL grimp-3.17-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 2.4 MB
Tags CPython 3.11 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
42ffb9e69af7bd09cab96786bc3f21716dced76d9daf6d553ef6eb4437b4cd7b
BLAKE2b-256 checksum
How to use checksums
0571c2d80fab1af8bf92ce86b18d30b9a7f1d2315e72e4205774590fb8d7ac55
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL grimp-3.17-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 2.6 MB
Tags CPython 3.11 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
c423bcd7fd139553d184f194486e1a718e816b5898ff688c436456151eb70c61
BLAKE2b-256 checksum
How to use checksums
b2f70a81e9cac29af4c88e73d7bf4d250bd01b04894b0bffa70ad5026846eaf3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL grimp-3.17-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Size 2.4 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
c3cbb0a6c5e8bf38ecd2e6d051e9d0992f3cf4c65bb01d3ccf525f48586f456b
BLAKE2b-256 checksum
How to use checksums
c1c0bcb08d1a5446a5618f129f0789fc2ea38d643974db1094d7eb68adb09508
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL grimp-3.17-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 2.2 MB
Tags CPython 3.11 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
d97de5133ae1588230d9c9c9724526e48e62be79caf32a85b8ce970db8ce46de
BLAKE2b-256 checksum
How to use checksums
122c07f824f3d3776265831d555b458380fa32214b3ff1534a11b2d22b292c78
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL grimp-3.17-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 2.3 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
5834e34cbf5ef52877dd6f6a3bcda137d0f07d44c65084d63913931b21951b2f
BLAKE2b-256 checksum
How to use checksums
d83cabc9de477962e071480cd7f2fa4fbd171e1f3f2d2ebf7aeb704138b28f94
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp311-cp311-macosx_11_0_arm64.whl

Download URL grimp-3.17-cp311-cp311-macosx_11_0_arm64.whl
Size 2.1 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
fe6c3c9f111e900a43a3657d3b1d35b920af6ff943bc417bca4ebcd6140e1e50
BLAKE2b-256 checksum
How to use checksums
393884eb297e570f0eceb916f3d11fc399de78309e837f4a1c5fcff36af5e800
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp311-cp311-macosx_10_12_x86_64.whl

Download URL grimp-3.17-cp311-cp311-macosx_10_12_x86_64.whl
Size 2.1 MB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
aa1b4d439d18372390a61926a3c33d5de2f5dff7ac7a71b8b5a665644ce81bc6
BLAKE2b-256 checksum
How to use checksums
757f99365747c992a97e775829e859bde28993a1771fa932a5b160e3e629769e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp310-cp310-win_amd64.whl

Download URL grimp-3.17-cp310-cp310-win_amd64.whl
Size 2.0 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
1337b0f4fba282bae2299aff9cc74917b39d67791394250c4c34ec3f7fcecd61
BLAKE2b-256 checksum
How to use checksums
cbb2eca1270dbddb5add091660047b5b4402d55318dd5bdc0cb0d4673bbe1c16
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp310-cp310-win32.whl

Download URL grimp-3.17-cp310-cp310-win32.whl
Size 1.9 MB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
0e22893e2876f5606d6f418b32ee3336ec49dfb90fc3ab2219d9a8dd79334758
BLAKE2b-256 checksum
How to use checksums
ca89b0888d02136ab66395495e083be1336e37735dfe76fc0cb2345f80041131
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL grimp-3.17-cp310-cp310-musllinux_1_2_x86_64.whl
Size 2.5 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
aebfc37b02e3751cb97c83524482bc104978ecce352cbd2d3463cd22b880e055
BLAKE2b-256 checksum
How to use checksums
e11268854b5ec1648d95c07c0600597fe9ce1a95ec3cb99a10643c9a83b19a19
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp310-cp310-musllinux_1_2_i686.whl

Download URL grimp-3.17-cp310-cp310-musllinux_1_2_i686.whl
Size 2.5 MB
Tags CPython 3.10 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
0373c957aad7bc9e930ce0cd8a13782f4d6e502b641a4f2935ea1de10c210ff5
BLAKE2b-256 checksum
How to use checksums
18e0e3f5c504903a05e92e97a6da1864359cb5a2af6ade0afe4ce5ef30f3c757
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp310-cp310-musllinux_1_2_armv7l.whl

Download URL grimp-3.17-cp310-cp310-musllinux_1_2_armv7l.whl
Size 2.5 MB
Tags CPython 3.10 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
40aa7538f252f99392ba7b3349f73d3567a2688b419026c1a042b61b4b57705a
BLAKE2b-256 checksum
How to use checksums
19cfbf9e7ac00842a68ec3635cb044de9cbd5ac065915cbe1015bfef56201fef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL grimp-3.17-cp310-cp310-musllinux_1_2_aarch64.whl
Size 2.5 MB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
15d58ae5f27d3fd150dc9d26808c9a5201e3728d144ea219b240dac031f125de
BLAKE2b-256 checksum
How to use checksums
a5c9fb5831679671c84c75be4ff1c91770a8c6b13296f89ef63d437ad3b90ff2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL grimp-3.17-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 2.3 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
d086ca2b30481e4b7d6fcc34812c71e9f3215bf8a865034883f125c9542647a8
BLAKE2b-256 checksum
How to use checksums
874ff563f878a0c22dfa46d014cccf7905e2780ab1c2f1b001820d897faf7ffa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL grimp-3.17-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 2.4 MB
Tags CPython 3.10 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
5e9d43748cd384cd79229cebb845ce74898f0914984f5506d09ad0baa914398d
BLAKE2b-256 checksum
How to use checksums
3dc1925c44b81c5ccbf550e738999d44778d5519ac0520f0eca4dd9fe17d59e6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL grimp-3.17-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 2.6 MB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
259945c06c984abc8cc8587c8ff3850c38714d7a75066fd04590fae96abef4a0
BLAKE2b-256 checksum
How to use checksums
3c3ce5dd9efdea973ac49463d502b21473c67df1d42b4ee9ed7be0497f610ca6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL grimp-3.17-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Size 2.4 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
ef09db99d6ac05bb31e45218ae3e5c9113a178ea0a9de4cfa669b6e5006dda9e
BLAKE2b-256 checksum
How to use checksums
ac10792162e80389189fb1ea96ac6ce7673cd79194ed09ad10842b1c8251e2de
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL grimp-3.17-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 2.2 MB
Tags CPython 3.10 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
f94828d17f9d6934d389149e927a1ed64d9eca1f40124ee4a7245c9d03462eb6
BLAKE2b-256 checksum
How to use checksums
44bae5a2e403a59c28c9e3fd30fc43182eec526e5cc6ded2b496689e70f21d0b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL grimp-3.17-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 2.3 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
81e68a2c4894cde7aa71648c3af122c7f1666d9adcfd385ecd3a59a43bbf911b
BLAKE2b-256 checksum
How to use checksums
3d75a83d98b234f433e457a6071bc391ba5b5ca06440a4fe62355e978cb1a0c2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp310-cp310-macosx_11_0_arm64.whl

Download URL grimp-3.17-cp310-cp310-macosx_11_0_arm64.whl
Size 2.1 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c2749e56d737efcfab87fbdddfbdf221205c35283eb4e0d039910265953ce426
BLAKE2b-256 checksum
How to use checksums
53e20edc3f8de68fdcd42ee2a8e497714522cbd4f25ed231f96025b99795ea13
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / grimp-3.17-cp310-cp310-macosx_10_12_x86_64.whl

Download URL grimp-3.17-cp310-cp310-macosx_10_12_x86_64.whl
Size 2.1 MB
Tags CPython 3.10 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
4faf10d69056deef996b385084309c757317c3631661b02327a8e8be804b249a
BLAKE2b-256 checksum
How to use checksums
91732ba5e50f353d4c4863fe062e3afcbc03aee7506138833956399ba09784ce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release history Release notifications | RSS feed

This release

3.17 This release

112 release files

3.16

112 release files

3.15

95 release files

3.14

105 release files

3.13

111 release files

3.10

107 release files

3.9

107 release files

3.8

107 release files

3.7.1

97 release files

3.7

97 release files

3.6

97 release files

3.5

91 release files

3.4

99 release files

3.3

101 release files

3.2

73 release files

3.1

65 release files

3.0

65 release files

2.5

2 release files

2.4

2 release files

2.3

1 release file

2.2

1 release file

2.1

1 release file

2.0

1 release file

1.3

1 release file

1.2.3

1 release file

1.2.2

1 release file

1.2.1

1 release file

1.2

1 release file

1.1

1 release file

1.0

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page