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")

Download files

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

Source Distribution

grimp-3.16.tar.gz (831.9 kB view details)

Uploaded Source

Built Distributions

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

grimp-3.16-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

grimp-3.16-pp311-pypy311_pp73-musllinux_1_2_i686.whl (2.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

grimp-3.16-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (2.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

grimp-3.16-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

grimp-3.16-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

grimp-3.16-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

grimp-3.16-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

grimp-3.16-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

grimp-3.16-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

grimp-3.16-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

grimp-3.16-cp315-cp315t-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.15tWindows ARM64

grimp-3.16-cp315-cp315t-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.15tWindows x86-64

grimp-3.16-cp315-cp315t-win32.whl (1.9 MB view details)

Uploaded CPython 3.15tWindows x86

grimp-3.16-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

grimp-3.16-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ i686

grimp-3.16-cp315-cp315t-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

grimp-3.16-cp315-cp315t-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.15tmacOS 10.12+ x86-64

grimp-3.16-cp315-cp315-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.15Windows ARM64

grimp-3.16-cp315-cp315-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.15Windows x86-64

grimp-3.16-cp315-cp315-win32.whl (1.9 MB view details)

Uploaded CPython 3.15Windows x86

grimp-3.16-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

grimp-3.16-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ i686

grimp-3.16-cp314-cp314t-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.14tWindows ARM64

grimp-3.16-cp314-cp314t-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.14tWindows x86-64

grimp-3.16-cp314-cp314t-win32.whl (1.9 MB view details)

Uploaded CPython 3.14tWindows x86

grimp-3.16-cp314-cp314t-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

grimp-3.16-cp314-cp314t-musllinux_1_2_i686.whl (2.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

grimp-3.16-cp314-cp314t-musllinux_1_2_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

grimp-3.16-cp314-cp314t-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

grimp-3.16-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

grimp-3.16-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

grimp-3.16-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

grimp-3.16-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

grimp-3.16-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

grimp-3.16-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

grimp-3.16-cp314-cp314t-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

grimp-3.16-cp314-cp314t-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

grimp-3.16-cp314-cp314-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.14Windows ARM64

grimp-3.16-cp314-cp314-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.14Windows x86-64

grimp-3.16-cp314-cp314-win32.whl (1.9 MB view details)

Uploaded CPython 3.14Windows x86

grimp-3.16-cp314-cp314-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

grimp-3.16-cp314-cp314-musllinux_1_2_i686.whl (2.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

grimp-3.16-cp314-cp314-musllinux_1_2_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

grimp-3.16-cp314-cp314-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

grimp-3.16-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

grimp-3.16-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

grimp-3.16-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

grimp-3.16-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

grimp-3.16-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

grimp-3.16-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

grimp-3.16-cp314-cp314-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

grimp-3.16-cp314-cp314-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

grimp-3.16-cp313-cp313-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13Windows ARM64

grimp-3.16-cp313-cp313-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.13Windows x86-64

grimp-3.16-cp313-cp313-win32.whl (1.9 MB view details)

Uploaded CPython 3.13Windows x86

grimp-3.16-cp313-cp313-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

grimp-3.16-cp313-cp313-musllinux_1_2_i686.whl (2.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

grimp-3.16-cp313-cp313-musllinux_1_2_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

grimp-3.16-cp313-cp313-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

grimp-3.16-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

grimp-3.16-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

grimp-3.16-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

grimp-3.16-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

grimp-3.16-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

grimp-3.16-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

grimp-3.16-cp313-cp313-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

grimp-3.16-cp313-cp313-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

grimp-3.16-cp312-cp312-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12Windows ARM64

grimp-3.16-cp312-cp312-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.12Windows x86-64

grimp-3.16-cp312-cp312-win32.whl (1.9 MB view details)

Uploaded CPython 3.12Windows x86

grimp-3.16-cp312-cp312-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

grimp-3.16-cp312-cp312-musllinux_1_2_i686.whl (2.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

grimp-3.16-cp312-cp312-musllinux_1_2_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

grimp-3.16-cp312-cp312-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

grimp-3.16-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

grimp-3.16-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

grimp-3.16-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

grimp-3.16-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

grimp-3.16-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

grimp-3.16-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

grimp-3.16-cp312-cp312-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

grimp-3.16-cp312-cp312-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

grimp-3.16-cp311-cp311-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11Windows ARM64

grimp-3.16-cp311-cp311-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.11Windows x86-64

grimp-3.16-cp311-cp311-win32.whl (1.9 MB view details)

Uploaded CPython 3.11Windows x86

grimp-3.16-cp311-cp311-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

grimp-3.16-cp311-cp311-musllinux_1_2_i686.whl (2.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

grimp-3.16-cp311-cp311-musllinux_1_2_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

grimp-3.16-cp311-cp311-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

grimp-3.16-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

grimp-3.16-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

grimp-3.16-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

grimp-3.16-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

grimp-3.16-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

grimp-3.16-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

grimp-3.16-cp311-cp311-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

grimp-3.16-cp311-cp311-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

grimp-3.16-cp310-cp310-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86-64

grimp-3.16-cp310-cp310-win32.whl (1.9 MB view details)

Uploaded CPython 3.10Windows x86

grimp-3.16-cp310-cp310-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

grimp-3.16-cp310-cp310-musllinux_1_2_i686.whl (2.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

grimp-3.16-cp310-cp310-musllinux_1_2_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

grimp-3.16-cp310-cp310-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

grimp-3.16-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

grimp-3.16-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

grimp-3.16-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

grimp-3.16-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

grimp-3.16-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

grimp-3.16-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

grimp-3.16-cp310-cp310-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

grimp-3.16-cp310-cp310-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file grimp-3.16.tar.gz.

File metadata

  • Download URL: grimp-3.16.tar.gz
  • Upload date:
  • Size: 831.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.15.0

File hashes

Hashes for grimp-3.16.tar.gz
Algorithm Hash digest
SHA256 1aba8e6946ec9b05b466bfc52ecdc73c364f425ec196b13e495316b915fcf10e
MD5 fbd17360f6cfdef571ba65a179d945c2
BLAKE2b-256 d335895a446f53c47702f2c5fc0b4374e18a0e997a49cbdad9a044c1cef0b357

See more details on using hashes here.

File details

Details for the file grimp-3.16-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for grimp-3.16-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f33e42e4a5f0a9914f8a6356700a4181138e8cebfb65d74d57571eab3ad1874f
MD5 5b60def146a863f9be1247231b91b893
BLAKE2b-256 8d67c2b0ed7f4f32b42a1fb510172e6380f50eb0d02890fc8903caa2eb9ebf1e

See more details on using hashes here.

File details

Details for the file grimp-3.16-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for grimp-3.16-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d8bb6038c1bacb9277d688df10e7b51e0cdd469a0e145d2870696d2a1941f335
MD5 c6b63ddf186441585dbe80eebd7abdcb
BLAKE2b-256 25e441adcad4a64ffbbce4c68adc1f19295e2cc29a8d369f9d1515ea06b9899c

See more details on using hashes here.

File details

Details for the file grimp-3.16-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for grimp-3.16-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 96b77665d7303f7590ff41942121af725961f30b62798c731d49b8c39e006b1a
MD5 349e5ed011dc939fd1e7e7a319a12254
BLAKE2b-256 f234cbee121541cfff8ac1c8c149f531812747402827b543e2ca2c12e85b245c

See more details on using hashes here.

File details

Details for the file grimp-3.16-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for grimp-3.16-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d7b5a446a46ecd7b1c8c4a62a692790bfea343c694e1a614dba550bf7840750d
MD5 9cb48551563c9a2755d6ae30ff2eb151
BLAKE2b-256 14824412c121812ae815f46381d5cba57223c79046c15b7e69b704b00ef62d3f

See more details on using hashes here.

File details

Details for the file grimp-3.16-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grimp-3.16-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c0489a3b90372d49710821988aae1283e9d39e801869b9f96f863543becd8645
MD5 c4552312ef94cc9f64db5b287ca45d6b
BLAKE2b-256 e721e649a619e862ec77057ee3dcf9de8804ac831b9a38df7c594975b319587e

See more details on using hashes here.

File details

Details for the file grimp-3.16-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for grimp-3.16-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 52b78ce09c612dcd3820d2888dd033c91cfca7f90ac1e017593d0536908b82ba
MD5 5039ce51dd4728bb9ec8eeeb49965192
BLAKE2b-256 c44046aad5a6d6327d13380382fe669921b3d6588df71cf654f4c9bad50adce0

See more details on using hashes here.

File details

Details for the file grimp-3.16-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for grimp-3.16-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 17d581db4eedc95edb7e65642ef81808149d38bcdfbd740488150971e0962376
MD5 496bcee5bd71c4f91cd78797abdaf1c2
BLAKE2b-256 3d8b49fc5927ede68640899116bf10707c9a3bd52fb749c65e1579f0fae464c1

See more details on using hashes here.

File details

Details for the file grimp-3.16-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grimp-3.16-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 941a7a55ea7595998a4bdf417d29ec204e35183f5c465d6a2c81bfb2bbd5e429
MD5 ce00c38c1e503be66c9e7a3b1ec87a33
BLAKE2b-256 1a498725b382cd6dd2bb504082510c768acfe3d17f86205c4a537bd1d020a471

See more details on using hashes here.

File details

Details for the file grimp-3.16-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for grimp-3.16-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6bbdc20017bdce6b1ab8698b84075053c99ebf10db481bdb29010ebbb47e85a3
MD5 7dbc9b90d7ca1321e0c4047d41c6e868
BLAKE2b-256 99d9f5af836c6a09c61c5d77faa8c6da5d17f6694ac67f6cddae6bec96ff2097

See more details on using hashes here.

File details

Details for the file grimp-3.16-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for grimp-3.16-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3397314750ca599cce02d07e044050c11f1f14f08f47432b69e65f4be7ee5b7e
MD5 a74dd6af28c8e9bfae983bdb23cce045
BLAKE2b-256 4ef1443f96a5b3510b5e4b9e046cc136a56f66167afaec5208669fe3b9591212

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp315-cp315t-win_arm64.whl.

File metadata

  • Download URL: grimp-3.16-cp315-cp315t-win_arm64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.15t, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.15.0

File hashes

Hashes for grimp-3.16-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 a93e6f3c5f7968c4b70de7dcfa66949ba524dc922ce21cef852437a65f2d11c8
MD5 bc14c82997aae4a5387097f97b7b3d21
BLAKE2b-256 e82801cb9c8d722e5eee92dec36269e04499131faecd1d11da37aca3ee59bf63

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: grimp-3.16-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.15.0

File hashes

Hashes for grimp-3.16-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 9cd98c050fb811bd8c0932a0c27a4eb8a865dd04bf524930e20419e169a6a8a6
MD5 5f7071391ba90a3f3a835d34088c64e3
BLAKE2b-256 20b6a91b08bb84ae845beef2bce91d3441adb453c80e57cc235469f5de3ec709

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp315-cp315t-win32.whl.

File metadata

  • Download URL: grimp-3.16-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.15t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.15.0

File hashes

Hashes for grimp-3.16-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 73e198e65c51b71e62d253f4fa6b2fa422e1225d84d21e8b320b43c144057ba5
MD5 34e0f7301718de62589ff2de54e1a2be
BLAKE2b-256 97c810815103a73f8b078bbbcc1d9436d89c1d64955ade22ce0d339753f739a4

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 caa6432baf432711d8816ece8137e4ad19dffb6f31dd09ffa08cbbc5cf1e07fd
MD5 fd1d9a78d51ef904869a5e7a6f1dd200
BLAKE2b-256 e4c8811468f8a39046d2f92096bf3b9aaf9b15e0d32792b51f5e296905547a64

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1ab4218366192a9f1975a22d4d053d2d61d943bb092d117d0a5825391b8bae9a
MD5 08e201e3c4968c709a6346967823a92b
BLAKE2b-256 234c9daa11c225abf1498d70d7eb0bcccd0879aeafa7d3eea7726981851225e2

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3be5711a014bcc80bf151271fb987fd7885a9c2c93e7426dcc977cf745196d38
MD5 8407e7cc5d0fcf29beff10d986df63be
BLAKE2b-256 f8ce8aea5a02a483993229796e7c69dbfe8225c4c8f39c6270a253edb7a04914

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp315-cp315t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp315-cp315t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 01f5334c3c9a6cb919eacb286f4fd70ecf44c99d3158760d739de18f08007863
MD5 87edb19df1349df0c4fdab93657f0762
BLAKE2b-256 ab0e2b03739fcb01a39b5bb7c30abc887b7665afd9433f8643fae33d96ad4db1

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp315-cp315-win_arm64.whl.

File metadata

  • Download URL: grimp-3.16-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.15, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.15.0

File hashes

Hashes for grimp-3.16-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 aaceeae65a24a1d7ee1bc7d3ea2dbc2efdc86a4978bb8ae22887e71d8e9c8dea
MD5 5006918740d6d02a27cb87635ca6669e
BLAKE2b-256 fe2eb2b39e466271adab6f4d37f0f27a36aff82a3389d709e36296cfcab2e0aa

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: grimp-3.16-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.15.0

File hashes

Hashes for grimp-3.16-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 71f8517c2e947d867854e6fc809f3ea1c52a2da1acb71ffb94d41c47a3db8682
MD5 a826e35c6de2a430b1702be02c1f3b6b
BLAKE2b-256 497123fd3292b67846ee4c0e5ab6ceab35953d23b52565000d9c7ae1d6cafc37

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp315-cp315-win32.whl.

File metadata

  • Download URL: grimp-3.16-cp315-cp315-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.15.0

File hashes

Hashes for grimp-3.16-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 49fbc38ee2ae83b3bf3edc526a7710ae38cfcc9793eebbc789648614e8c0f859
MD5 44326fed255135673355f1ce7cf34a6b
BLAKE2b-256 d16ec14fd511171f01a9285cd0ff71ff264319da8dd94fd1efc7305164970192

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 486a53676651e65b72643310e9fec88a598e577fa2f533bfed6e3884a1006792
MD5 ed4c45134a520cf9811804ebd2a638df
BLAKE2b-256 b66d32e085efdf5a397592caf6da6e75ed72329a921656531a17ba99bef13f60

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a910f0fda34f56cb16f2be4448ae3bd40fe720b865d7c3773145ba51606d5f0d
MD5 776bb188bdc3e93847e12630541a2254
BLAKE2b-256 be8cca54ebd59e04a582fdc9318f947d33789c482e30218a151816ec3ffae225

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: grimp-3.16-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.15.0

File hashes

Hashes for grimp-3.16-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 91fccaaf93090bd1f1d787f611bc3d4d69db07e6eaa6d4cbe947c2cc3232a9c4
MD5 f5f7d23a486057cc98c0e8d928f304d6
BLAKE2b-256 10e0990bcfe005645a35af1039ef917cb7fe015fcbd2d7790ed7750784630ee8

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: grimp-3.16-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.15.0

File hashes

Hashes for grimp-3.16-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 9fb1677225506f273bbabdafb0e24ab25fdcf165138ced77e4d7489908755222
MD5 1ebf77041fe59c26a2d51c9dd840390c
BLAKE2b-256 164fb60f10c5110c5903219af76fd39b10b318e0fad265d76083bc16828e6a5d

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp314-cp314t-win32.whl.

File metadata

  • Download URL: grimp-3.16-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.15.0

File hashes

Hashes for grimp-3.16-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 23a8a3d95f03428ada95188de5e22538647304b5393985f46a58c2982d58c48e
MD5 d91fe59b1a295ffe1684ed32e3a7e458
BLAKE2b-256 319ccab716aa63f6ce2302334bffa371820c8c5fa20bd068c47470872cb661b4

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 be12564e56b236440ae81f76a1ff7c945c41a2f14b00c150f8d0239f090b6c0a
MD5 3cc56ee63f8443e6eac5f6f9e5544dd1
BLAKE2b-256 51c6112cfe6fa33137db15b120d9328b38e179d00573cce19d4eb68979f588a9

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 969634d0d24ab7e634fb3aaeba47e06d8386a945652ce48fb14d8129ee0ee41d
MD5 307f3c1eddea3817ea568364735306a3
BLAKE2b-256 4f5cb7f78ccf10f1d3031a14167803933d6c7be748f93a7ca017e45d0e4e0f28

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0dc257478122442d5c48c4b13853b6345d0f42f5ec1b97195385701a6c0e43a9
MD5 7a89abe19991da217530c53fa99540e2
BLAKE2b-256 a06fb6119143c4892d270f61a6caa6ca270df07c3ba4393c89ae8d38bb180a69

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ebf29413261ef5cce2241cc2cfc0e49db4390fee42c81ed24c5b49ba2ebe97a
MD5 68a22cda1c24d9269c332422338e09b3
BLAKE2b-256 e49906e1462bf2f16818fef3e589c4d2f161ad76146c43b3ddac9eaadea21b95

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0877cfa68d12e30a2c49172a60bed6f91bb1e7a8514a685554278fb60cf39fe4
MD5 14fbee7c512c6d82ee64003c90cfa728
BLAKE2b-256 bd488bff5f976ad5bb57170698464616ee3e0e1716bff2d80021ad9b739ba4a2

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9a59c245015fbe0ec5c100d643d7590f15c2fcf85d027c2795e3cbd4b3f81f2f
MD5 d114a5c84592b05f1a6bc34218b400ea
BLAKE2b-256 e81d67eaa5610f9389b60f6b7bfdc60074f5e551f8db06db2b5bf14f0dfa24a5

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 acd3e88a1ef7fecf59bca6e3d872a193c317acb22342d641fb205bf1f8eb722d
MD5 d6df693ba92c5e4482437911cbdaf47c
BLAKE2b-256 0142490cbbef13412c3b268da2a2b9c95d88017719e5a353694b7f39190a03ee

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c910491b8b49b38f9313edd8620da08b2c8cc12395faefda9e65338e28d2ec3c
MD5 b9cddbf893abfac09de584730ee438e9
BLAKE2b-256 4cce01d9ca30d4c57380daec9fdbf0ca98e60b0f3ab272c33e1bef26fcd92051

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cfc0b5623e014b045cb563484c40468ae964b7cfdddac57134a04712032e570d
MD5 bf89c5fc4a4f6cf0127929703e9f2983
BLAKE2b-256 39964e9b142051c5d076f44ea97754cc30e0ad1e799024b9d939d5fee005bdbd

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7249a2b566836932c65e52931202aac3281a4aa5463e383b90bc3320a90f9c86
MD5 3f9148847c9ed8eefb7fb5babf02aba5
BLAKE2b-256 3be6b04ffa6c2bd6fe38f3832d58bf1bf832dc8f6b0f6235f79db33c4230fb7c

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6bcba87bbd7cc800b86745bb15cc12f159e90c14a332263020376c45c8dfff98
MD5 1d118e5729d709f2a9ed1d61ff8a4de1
BLAKE2b-256 0c3a24b1a4992757a445f1c8e70510d1ee6f2f96e45e6303001d8ff2fc26affe

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7cd3c3470caae7631e2bc1906b8334dcbd2a23b099ef013dad72de751bd02b61
MD5 632171d0fbedede94f16e9e78af34c80
BLAKE2b-256 cad2e7893c3cbc92f7e5e5a7bc24c1951f0f6f50866d32f9ef76b159743515d9

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: grimp-3.16-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.15.0

File hashes

Hashes for grimp-3.16-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 4810c0ce5117d611c17dff5bece8924b45bd5884047f093eb22e0168828506e5
MD5 27c74161b50bf1181d8f63d7c9d94cfd
BLAKE2b-256 4ace196f4204cc0645ef8e0f1e23a6549cdfce4523a274b11b7c21b75e848bac

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: grimp-3.16-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.15.0

File hashes

Hashes for grimp-3.16-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5d5e7709132fd0e553014e8fa621316c432558e6b0dc2043cc02928b6d4941ae
MD5 ee59c3706d36c0b0540b9dab10e223d7
BLAKE2b-256 de9b71516c091fdfefa6b2a2f729925ab34ef6524df36b343bc79ce213b583cb

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp314-cp314-win32.whl.

File metadata

  • Download URL: grimp-3.16-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.15.0

File hashes

Hashes for grimp-3.16-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d8d96a234f5d3a22cd78d4857b786fc16a9310157ca600dddbed2cd4d36be9f9
MD5 cbcf007df21240d07dedc88ea13ee635
BLAKE2b-256 0732d3f17ffb29a82bfb99c6e3c230ea759f52205bfba1da5fea445ae5e42d76

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f08537994d2aace1fa51d9b5a50bbf5e13982fede528caf5b692931a795f28d9
MD5 9ae4c6c574aee31f1b436892fe1b76f6
BLAKE2b-256 88b3781855a0771ffbb599115e97b98568137748b890512518b267c52f5cb827

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 908c98d7e773e4136af48a0e0e6f8f392f43bd44a4ff21b4bc4d64acfe4ebde9
MD5 81c67299e9a8931ce0f7a6e38ea26f2d
BLAKE2b-256 11c11ab480673ab77c698975a296a30d2ff7f6d1c0c594e3e56c1218e4c6d4d3

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 77ebbac18bc5af688ad6379d46c2f62b16396df33bbc69f644c3806d4b40c76d
MD5 753651ff929ae51a67c752087de4b87a
BLAKE2b-256 ecf5430736f15960341125f83f3892cbd51bc7452633fcb2b5979e65d4b72c7d

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ee715b5c31d56248d488c33d24a188ae135f6dcda685cd89937f9bf9d3314219
MD5 01123cb8c78d1f2f57d90c2c669561d5
BLAKE2b-256 7de5406064a105392f42d8f8bde9686dfcb87dc0d334c831bf7c4a675a4b09d8

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9af1b76629f1f0b5cbb03f2ec02a7983767ef149344f7babe2be0eeaeb37b46c
MD5 aa689ffa8a13c77278e1a18460580f95
BLAKE2b-256 6d8d82273065ca0621e3a32b2c2abf508fb56ba738622d727172f99bb7dc2a17

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4c5bfd01ebdd98c9f73eb1434161ae325d30e3c77d8f2d8c0b2dfa5ff6bab242
MD5 29f3e4aef0fd7feae23aa6de47ba1413
BLAKE2b-256 514e60cfb19a6b2daa80c7d49bfa4bae512d2ebbbdfe2d43e6045f11a7dbe9a7

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5ec352053e1ef7040d027821bc023dc01ee6137871178de14df3ea815fa614ea
MD5 70a7d4289d27cc9e57c45e2bf667c441
BLAKE2b-256 cbb8a152cb8ac1da8af7bdc88c0a8bc8fe2615ca3aa17a2b4a1ab3514d298cd1

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6b94363624bd1e4959b5dfad67bbc20d80c1c62c4cd086ef0c268736995b3597
MD5 72ffa5e5cd50bf1609f8426629090b4b
BLAKE2b-256 7272e8daaf975629c5ac16ee49c5d8a486d4492c74121124d2e88ca2dea8041f

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 38c148df96ef17f36521e45539eb3baa958098dc54e00fc901aba83e0d976429
MD5 5666c90172aef7d5d540383eb98433ce
BLAKE2b-256 3d83042e97731f2e374bdbc64b40cf08910fafabc63904ade03e4d66dadf298f

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 826ba2eacb67ba50f32ea2e8ec3c5503dca9a6159165a0b3e725f9a816eaff0f
MD5 850e660c5f147a2a1a1c8e3ed83f605d
BLAKE2b-256 bfb1676a33dee3897841d741028feae79930586ebbf092d9fc2c7942844a47f9

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c98876370f8d88c2a15cc76a1ebe3e7f1fb51a168eb84a58bf716f92292cc187
MD5 475795872e419956e88f657425460e46
BLAKE2b-256 71137a6474d44b6815f30d6aa7862c464976ebf2c40b88f6abc1ecd65f5bd87c

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 effd0823194230fb77335fd2b25cefedb08b5a66f1957b24551ede7000766532
MD5 3703a02ad71ccec058a5865248a1da86
BLAKE2b-256 02eda610e125d26dd4009a07d0926f597a7d2a7910ec376e1af63b8132aedf63

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: grimp-3.16-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.15.0

File hashes

Hashes for grimp-3.16-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 86124a3dafb3184f34389c650db3ff2a27238773da2fbc840f51290552d83ca3
MD5 27cd8d1ea349df7cd26c3590407315d8
BLAKE2b-256 34e86a7e0d68b6b24b79ffd4f274dc2d66751c3cdb6cfefe180201119c173f17

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: grimp-3.16-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.15.0

File hashes

Hashes for grimp-3.16-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8ceb54d891f879b4e5aa55ba9c95d37ac2af5c9bee5fcc7a07a909d03f3d9ade
MD5 e8f9c4520b0f9eb1f5077ec47598f553
BLAKE2b-256 ac6666db0aa202e638fce7929a78db1ecae2e059f22effc1925239f8ebe1b870

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp313-cp313-win32.whl.

File metadata

  • Download URL: grimp-3.16-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.15.0

File hashes

Hashes for grimp-3.16-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9c144b81cf1d1699ecf9192f7997f71301a0ce730030b1c30fec5673796a0ccc
MD5 647b17eb030548b7307b7f582a71640a
BLAKE2b-256 3fe1211fa3ceac04b4ab9fb4c1c880717e9cb12080c5d9d226d867cde43015d9

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9e271e8b4d915334ab7645367cceea3025e994297aec9219651fbe189c89829e
MD5 3bb5153a74cb19566dc74d7bb0c2f925
BLAKE2b-256 372c90a9a0909df2b3d7b1d3764050dcdf74a7f27ca35729b52509873d1ad156

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7b26bf8f3b5d59298c5d285aae609436a94a954b4d2bb576e3dc3813cf34f356
MD5 e21c3fc6f098af074541b739fb496079
BLAKE2b-256 51ea2356d89d270db649ab55ecd427e387add5cf32f0495ac2ae6d474c0486ed

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9ad2ef95fce8a34aba2805d84d8d06ff81f6f3144ba72da0c6be7200a551e011
MD5 e31a3b39fc03efd10d90783c107724c9
BLAKE2b-256 a7f1e4e349c783db592455743f978214637cbd00037a7ddba70f874cc6eda3f9

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 520c7e09534fc168906944061ef6ce090f041dc1c728b88fd8d8d5d7feed43e3
MD5 66d0bbe693bb8125dc551f2372cebaa3
BLAKE2b-256 e4fa52745d11cf555e8478d01e1c2b3abaed4b1aa88a9572659596b4da03d717

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2dfd52e9fcf2edc1afb88a37e9130771dd3916713e2d2dba6b6ee791283cec9f
MD5 7f1ef5fae149d5cc79b535e83141652e
BLAKE2b-256 2ec590f3cff5d143045f19126b4b3640890ada6a8eff5e849d6d8a4e8ba80d05

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 45152f16a4eb455f732e95c7d75a5375487fb84b14049fb58358939155ad72c1
MD5 58dd1065ec4fe13453eb95063e57e8b6
BLAKE2b-256 f84b64230082ac5b277166c9e63ece351dfd75de5b311b673b9daba280786f18

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2b4d408ebb89a4aff5e402b0b8919648fe39276fec7566a3da8365da3ceaf8e9
MD5 e0899af632dd7527bc44c533263b8588
BLAKE2b-256 8dd58e9799786ddfd54765cdd9aad84649713c950edaa2cc1796dd78a44fe597

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 90f3d03e489a6947f3aa9bf98afa0be64c4c31e6551cfabba15fd82e2e93cf21
MD5 23164df1147de809ed5bef9f9a6e7e9c
BLAKE2b-256 01aab8a228209c5a004a2759a9ac24867deced740f54b514b4f06154d6cfb129

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4c3092593356ece3ad61d81893651100e969628c2ff147b8ab634aecad837c2b
MD5 d1bd0f7eee519aaecbe399974091ef1a
BLAKE2b-256 32c5de406be061e3ee50518f7b76e8f9d8a202d526a8ff25db3171dd99bebd81

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 946929a3f3c987783134d8ee6aee6553fcf35eb26a82def9ebe157df441ab6b5
MD5 40e4af41787cc5827456aa14952d8a5a
BLAKE2b-256 a202f3d891abf9b00977169b898c231c0d932bc620d04e175c2c643380e25edd

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30ee913a725b2a1647edf63e8e91f6709c08119cd1be86602b09f1ec5e25af00
MD5 59cb2826c314eeb0771cc12fc6cd6e26
BLAKE2b-256 9a29fe226976e6424489716d6bd5956b59f78f20df9de1334fc02c90b8ac696e

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 11a9ffc6956804aab8414dca48501f417aa56caba00dd2b113277c19fac37c8e
MD5 ad865183b5fe21dbfb40aed9eb806b03
BLAKE2b-256 5be131e1a7e877d26f56226a30fd0118897f05e08d80dfef1306676c3bd9affa

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: grimp-3.16-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.15.0

File hashes

Hashes for grimp-3.16-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 6e1a0aa868d3d6f96246579cb1ff4ed09c6863a64988f68021016a32d4ad5061
MD5 e76ac94d87bac3e8ef002820bc3f9c63
BLAKE2b-256 bbed70570656e45ce4ed8dfec6bab9c6b847752f9514e272f3da48a4164f84d4

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: grimp-3.16-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.15.0

File hashes

Hashes for grimp-3.16-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 183a2901b260f2c3a77501c7e312dceaffc88742f63fc15728155beb490aa7b0
MD5 146c483b8759aaf57ba0df309dc1cee5
BLAKE2b-256 f9bc4ca99b826c321a8aa4c5fc48eddd04762834590106a6bf8d3c8c740f5507

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp312-cp312-win32.whl.

File metadata

  • Download URL: grimp-3.16-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.15.0

File hashes

Hashes for grimp-3.16-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 dbadc7cd2e218df65c1cd1aab1f120002c62d367e86581954473c43eb861ef1d
MD5 20ace04cb331710bf4ffa985cf0f9a60
BLAKE2b-256 6afba9395f88824168677fba2c507db8b6443bd7ee924dcd549e3c8f06b42b3b

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 609182ab235d8388ed516c097d37b9d014f4cea9100ac5f0fa8e1ebecde91cf5
MD5 0a1dd5dc64431f5f1105f62ea8ab3480
BLAKE2b-256 ddb665ecf8c3acfe6f4b3920ee5c81cf46579c5b4fe99b6d562c0d023acfc9a3

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cddf11744915b0bb166d19815723c9be5636868b412133960c6f54f000c2d1f1
MD5 ee817b889d7cb76bf1a19b6fbbb6bd84
BLAKE2b-256 129b40d610baac2019bbe8b784096988c61d2b75c73ed49766ffe5ccf9d0e8b0

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9d8e1af09cfc0170452ea87f4dbfd85abcfe19c6933fe691cafe63699da3e032
MD5 2d12c6e2ce2ea87f81d1105e5be33d95
BLAKE2b-256 aaa8bbfb9be1c3c17bc16bef7d896967cf9c0cb894066335b09ab6ee172713e7

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 53df2198c5de64ec0a2a4eac6d2b80b519cc7d636fe07ff7bfdd33925cf5b9ed
MD5 de4e21da72a527887a410e14fa013de2
BLAKE2b-256 0027702603dc7d7afe877c0de5ff1ed828d2071346136f746fd18af1e2eaeaed

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47754d13457a6295fe759fdc9506aba6e30f9e81c52e245454387a094b5da6da
MD5 6dd8efec214def1687cfa7c1d272446d
BLAKE2b-256 0460a94d1f9e7ca93b1f32fded53b6fd9588c38f331eea826467ea12246facd4

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a3dbfd4f8c1991cc7384ab17ed035db0cd62cac3e769a6640baee00d61a4731d
MD5 e1788b80d1303eebdd2b1a3d9a335b40
BLAKE2b-256 977f4c74e937619bc489a1f1538e90f87621b794e0e5c9239433fd54be144ad7

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8bf90b6eee848fd414fecd009f17c103a901e7f5c501439116497609424ff3aa
MD5 b10cd7545abac0570a77d933f7ee9d49
BLAKE2b-256 b10c1a46a60fc07b58d53fbe450cd4767b42426b361f8ef9a4fe556d06e08376

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0fe892d9a20025e9e4c30d4f74b564f1ffae03fc7c9b04ca648cb25b8fba7a56
MD5 a6169ab6725e9911f61f441e9894e544
BLAKE2b-256 93192dcc2764c8ea90978a07d58a8105813cc761e6750fb0ff6f72c34aab2d8f

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b2561f47df98751dd8da00283515f10c5befd2377552f3abd80e7e6303e48e73
MD5 5233d6745e1b28e1861a229c7cc125b0
BLAKE2b-256 8a6ddab3f600921a0d135dad87fefe0cb470e43e20c94a4ca07171cdcfbe65c1

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 661694164c43c3bc5c918888b22915a1c27bc51c176be992c85f6c1799775dd9
MD5 ddeed4decbb1a20596a7516e68cb3d14
BLAKE2b-256 289cf945f478437df347d2db52a3e48ec7d202a0ac07c6afea5794c0d6e0665e

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7300805eb81be32ac81cf1cdbc9ed3d9d41e057b32847be37a3275ea75ec750
MD5 f9ddec981f061bc6c84a78b207628841
BLAKE2b-256 688a5c24095ba56a82127c2deecea0ecf12ed8dc62ddf0300986a38ecf78085d

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 40952f0ba03234797a06296ab6955907aa2fb7f57006ab6df898a5d62c7dfbad
MD5 eb6edcd4f0d595a79eea4c1a390986e3
BLAKE2b-256 64e47883ba3a3cc6ae5e1531facbcb7a7e8b4d644d6efdb19ac8ac444f5c42da

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: grimp-3.16-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.15.0

File hashes

Hashes for grimp-3.16-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 ef23c0d658cbe779fb5365cd1b3e4d25a831bf5f4e2e9a96ff861350928801cc
MD5 bb2edf9f10b7dd3496be271d54add90b
BLAKE2b-256 33cebac585a874e9b5f65ac589e16a660a9cdc3fe160fda0ddf12fae2dccab9c

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: grimp-3.16-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.15.0

File hashes

Hashes for grimp-3.16-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b3a08dc54b0aa6c3a7eef3814a9dda07bf74dc86566e095e6f506c3ec0457245
MD5 0c958f4a9e5ba6584ed0949cae0dac60
BLAKE2b-256 d92254030572bd5c3890bcd39863d16c25fc1379bc6f52d93c0979d66f5d6c54

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp311-cp311-win32.whl.

File metadata

  • Download URL: grimp-3.16-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.15.0

File hashes

Hashes for grimp-3.16-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 451a566a3db009b0c1eae28bc0ac8b749f03b2d781be557af514eac7a9aa53e0
MD5 675962a589c41d8a21ea87912a817f79
BLAKE2b-256 2fd177b3cd6cefdcf5a4d697a488e803e0e593dd9cdf45cf8ab1a0ac4dcdf8a5

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6db6a601797a9c8889763a77cc087a7953c1c7ff9bd1ede1c311cb365f86df23
MD5 936d04e3a7587ef52ce7d21649779aab
BLAKE2b-256 f0d02e06509d09a07d098270de6a36ad97f2320678211ad0c6f760f23e689154

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aee3e32856c12659f7a3911bbf4e582790b08fdee9b03b3ed5271ac4103695d7
MD5 66a65987971d5246209d655288be27a9
BLAKE2b-256 45870d591a5c9a18a130f468de86c24fc2d61d3e49dca88fcc89a5afc47309ca

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 93debf95d3e654b17a2a36b6df27c951f78d5e8f87ac92f25fc0d2fb6ac35559
MD5 de4e456a5e83b84ba079c54ebbb44eba
BLAKE2b-256 e8472b399f8754f65931762fb30230761a2bf99a89e6a8db7a0710f2e4d9a9cd

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2dfc1743195682d10ccb800abf9019589829d5d450be9cd2c3e14be09de19112
MD5 a1e33f7ac211f357182fcbbf8d880589
BLAKE2b-256 c759d334b86d2242f6aba05f4a4e618c3d9e02d914add29dcc9e9cfdac980d10

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 90929fe68fb3f346f855fa80315bb91bd31af3e9aef7bc95aa6dc54b36360fa1
MD5 f44b157243c9a2c9e1572c38b0866bbd
BLAKE2b-256 6a6cd4131317c6c1fa7b37d1962b306556c42c76735123de71294ee603ef9261

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cb279dbb41f1fff51afa6dbf5f5beb7a2c7cbf3d8d0d01407b626298159494fe
MD5 d28445c55d0c99c44dd004e84c20c155
BLAKE2b-256 acf0abae3b14a9d4417f542c89e7f55ef5eb3b9670fe84c3a2348bc618e506cb

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d335126d3db67c8f2f2ac22c9171fce92f5af5313ef5b5ffe15654aa5a576013
MD5 6b100567e94cec6d71077b562eec7b41
BLAKE2b-256 81134d1c8200fc617ab2ca40ebdcd1a92f2cff69e2aea9093aefb8a0923b05e5

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cce8ea50c82e443241e6e3ada366c699df67835996cdd8536fb8ff4a2224067b
MD5 5026415f8b6de9011b2c9e97dd669764
BLAKE2b-256 fcb43bcaa2b47eba41968d894aa12cd84d390b6aa7887da615db027fe14e41db

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3918ce3765673b7c4d3dfd67b25b5b53dbd5304c5dcbd109e57f78ef7180fb4c
MD5 3e7ff0a281722718d92efcff0fd9d830
BLAKE2b-256 8265430fe26caf2ceb35287bee0d2066f08d8e54a19dc832beef9fff4f0a2074

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0841bebce4a91f16a29672d084f98285f85e5ce894a0bd10e44801ef6f3bbedd
MD5 81e628f3a93ea835a09907eb1764036f
BLAKE2b-256 f48a9b906b74d94fe2d57d1bf79c1e72f7d2f8c1aaf07477fe7767e053ab3a0b

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7a1e689bcc949dc2a67bf9ef2be73d56f620438c71fee9fb8001a37f0efaf96
MD5 14e0be7cd3f98fec91547a0680f5188a
BLAKE2b-256 6013f9ac540d4b6278deba2b2eee44380ac851ae5b9fbbf12c748cc5215133ac

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 613b0ead2c8cddc6986b50e2318b4b0de5d1b7fb7770a283e0238cb2321f0f45
MD5 2d9378095894cf6919e42e8650de45ca
BLAKE2b-256 6dae6d49e7fd3f409c6cd45025533404d55decced98c0e69e810be84e16f6d17

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: grimp-3.16-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.15.0

File hashes

Hashes for grimp-3.16-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f6c98bf4da52e2c1cb9cd6e7fd2b01355f3c82254fc501336d4e5e6124e391a9
MD5 fbd8d5dd455431aff62904d2cddc381c
BLAKE2b-256 7eba1c25eacd2b0c394e9e328657ebe986a408df52fc96d6d7bd35ab5b4f555c

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp310-cp310-win32.whl.

File metadata

  • Download URL: grimp-3.16-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.15.0

File hashes

Hashes for grimp-3.16-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3ecf63ddef8f423da1cbf0e38a8247d6ae5449e981c62f41b97fe9e15f6fec7a
MD5 760499f24d0199178586c2f2c130257d
BLAKE2b-256 52f32d555889695e01f5aa890269634d6a3184ce3f9f032178d568576e2ccdda

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc22d7a3f27e022f8615f9219a7b825bcbfd520bf11b093e603ea8b728b4598f
MD5 f9a188b3e7b776c37727f9408a948d96
BLAKE2b-256 9bf03222e7d3313e561665970b7dfc503962eeeb78acb3ba7df5bf2dff94409d

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b67d5d511a832d96fc5b71e98c52bb878709da77d94d71ec1d8c19b71c798e6f
MD5 07c9f5e7d01dd3778f2d7b2c84c1d5d1
BLAKE2b-256 5ab0be339d27999f4c8b99ea0b860dc72b0c4ca367693e780295d4ad2234e80a

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fc92cce0dca1bf9f84d9e597925ab6dcda485cccfbdc76335862337f21e702e0
MD5 4ab329efaa018ed88e98ef92954826f3
BLAKE2b-256 5293e8f81a1b04a15fdabd5e9c279d65a414ef99c7147a7fd8d52daf04ad98a7

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 85781c231c381133e0aac3347b6211610baca4bc7511c74d6ff2650f49972c81
MD5 5fe2569a1f85662a570763147e0fd1b1
BLAKE2b-256 51d43681a8d26227dead4be56f815887b51c5a17abdb92b3fe52e3f5f902b4f6

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91316c410183ff205f8a211858e6acdc432244f239db2e26897ef6a360f83d92
MD5 cb3fe6cdd2bb38c221b829b272ade663
BLAKE2b-256 47cfd90f90d934a09f106bd0ac890c77dd8d8ed1276671a52c0ae23dcb59a608

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dd855e38c8616ad098886479995c36c3999086f3119f5efc7c4e6fd2ab61b1e7
MD5 9037952af50fd41afe0f5b263c870ed2
BLAKE2b-256 e779df81a99ec3920af4af4dca0872bc2b58fa942de63cef7ed636717eb7ebd9

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 96752418700276ee6306f29f3e3175ce8eae174f122344d9c9923a7c4b1f8a40
MD5 7b73caff9b71efd3a3e03353159b7248
BLAKE2b-256 2380f1f179013714ca85c2ea61f649c468dceb2eb5a615e8380cb961238cd69b

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8551f5e665d85073dd7cb0267c88fe5f358855576720d8b2386649e0c222bea3
MD5 68c3a19c8146c867756b33c6e0833e17
BLAKE2b-256 362eb4169d0e080e865aba6f1aae153ea0c28b0f620fbfde0b61d3175e563c8a

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 79fb9067c9c3aa57efda5731c6490c05ef457cfca0efe6ae20cf851102117c5c
MD5 4866946e38f8a280b525f239d71b372f
BLAKE2b-256 4694534ea67059baee68d6658c52e466f5c1ca81dfa9193168aca13022e6b3d8

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 afdb77d3ace10887f838637a08387b3b8934ab89ef5753bb86bffe3a42cdc251
MD5 9cae425322e98da1be30333df1d58a6c
BLAKE2b-256 996549db86fa98ac5c35865fd5c200aa476c49c560e93babcc886152e4c6995d

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 980bd349d15c5309c561162b3d66f627173121c9477b2be417cb28b0b69353e6
MD5 2eb001a4cea5e50272da6dd0ca4caedd
BLAKE2b-256 8a3e6fff5b49220380f5c8ba0db5ce65b3e49ca13f833b6b2cec9df65b89dfe8

See more details on using hashes here.

File details

Details for the file grimp-3.16-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for grimp-3.16-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8e77b3beec0ddda55ef6ce2165413aec37fe7704286c648cd07ce02c25342122
MD5 4bb9c44d67fb9ee58941ab1aeac6aab7
BLAKE2b-256 5f3ee9aeebdf8e6b3cad892e2074f9e14b750fa54b494ba91a78ba6fe109f33e

See more details on using hashes here.

Release history Release notifications | RSS feed

3.17

112 files

This release

3.16 This release

112 files

3.15

95 files

3.14

105 files

3.13

111 files

3.12

111 files

3.11

107 files

3.10

107 files

3.9

107 files

3.8.2

107 files

3.8.1

107 files

3.8

107 files

3.7.1

97 files

3.7

97 files

3.6

97 files

3.5

91 files

3.4.1

101 files

3.4

99 files

3.3

101 files

3.2

73 files

3.1

65 files

3.0

65 files

2.5

2 files

2.4

2 files

2.3

1 file

2.2

1 file

2.1

1 file

2.0

1 file

1.3

1 file

1.2.3

1 file

1.2.2

1 file

1.2.1

1 file

1.2

1 file

1.1

1 file

1.0

1 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