Skip to main content

Guppy 3 -- Guppy-PE ported to Python 3

Project description

Guppy 3

Build Status Codecov PyPI version Repology - Repositories PyPI - Downloads
PyPI - Implementation PyPI - Python Version PyPI - License Contributions Welcome

A Python Programming Environment & Heap analysis toolset.

This package contains the following subpackages:

  • etc - Support modules. Contains especially the Glue protocol module.
  • gsl - The Guppy Specification Language implementation. This can be used to create documents and tests from a common source.
  • heapy - The heap analysis toolset. It can be used to find information about the objects in the heap and display the information in various ways.
  • sets - Bitsets and 'nodesets' implemented in C.

Guppy 3 is a fork of Guppy-PE, created by Sverker Nilsson for Python 2.

Requirements

You should have Python 3.10, 3.11, 3.12, 3.13, or 3.14. This package is CPython only; PyPy and other Python implementations are not supported. Python 2 support can be obtained from guppy-pe by Sverker Nilsson, from which this package is forked.

To use the graphical browser, Tkinter is needed.

Free-threaded CPython is not supported, due to the excessive complexity and overhead to lock and unlock every object in the interpreter, including objects that are CPython implementation details. (Maybe _PyEval_EnableGILTransient could be a solution to this problem, but it is currently not exposed.)

Installation

Install with pip by:

pip install guppy3

Install with conda by:

conda install -c conda-forge guppy3

Usage

The following example shows

  1. How to create the session context: h=hpy()
  2. How to show the reachable objects in the heap: h.heap()
  3. How to show the shortest paths from the root to the single largest object: h.heap().byid[0].sp
  4. How to create and show a set of objects: h.iso(1,[],{})
>>> from guppy import hpy; h=hpy()
>>> h.heap()
Partition of a set of 30976 objects. Total size = 3544220 bytes.
 Index  Count   %     Size   % Cumulative  % Kind (class / dict of class)
     0   8292  27   739022  21    739022  21 str
     1   7834  25   625624  18   1364646  39 tuple
     2   2079   7   300624   8   1665270  47 types.CodeType
     3    400   1   297088   8   1962358  55 type
     4   4168  13   279278   8   2241636  63 bytes
     5   1869   6   269136   8   2510772  71 function
     6    400   1   228464   6   2739236  77 dict of type
     7     79   0   139704   4   2878940  81 dict of module
     8   1061   3    93368   3   2972308  84 types.WrapperDescriptorType
     9    172   1    81712   2   3054020  86 dict (no owner)
<89 more rows. Type e.g. '_.more' to view.>
>>> h.heap().byid[0].sp
 0: h.Root.i0_modules['os'].__dict__
>>> h.iso(1,[],{})
Partition of a set of 3 objects. Total size = 348 bytes.
 Index  Count   %     Size   % Cumulative  % Kind (class / dict of class)
     0      1  33      248  71       248  71 dict (no owner)
     1      1  33       72  21       320  92 list
     2      1  33       28   8       348 100 int
>>>

People have written awesome posts on how to use this toolset, including:

Formal and API documentation are also available.

Contributing

Issues and pull requests are welcome. You may also ask for help on using this toolset; however, in such cases, we will only provide guidance, and not profile your code for you.

Please make sure to update tests as appropriate.

Testing

To test if the heapy build and installation was ok, you can do:

>>> from guppy import hpy
>>> hpy().test()
Testing sets
Test #0
Test #1
Test #2
...

There will be several more tests. Some tests may take a while.

License

Copyright (C) 2005-2013 Sverker Nilsson, S. Nilsson Computer System AB
Copyright (C) 2019-2021 YiFei Zhu
Copyright (C) 2021-2025 YiFei Zhu, Google LLC

The right is granted to copy, use, modify and redistribute this code according to the rules in what is commonly referred to as an MIT license.

This is not an official Google product.

*** USE AT YOUR OWN RISK AND BE AWARE THAT THIS IS AN EARLY RELEASE ***

Project details


Download files

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

Source Distribution

guppy3-3.1.7.tar.gz (351.5 kB view details)

Uploaded Source

Built Distributions

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

guppy3-3.1.7-cp314-cp314-win_arm64.whl (341.6 kB view details)

Uploaded CPython 3.14Windows ARM64

guppy3-3.1.7-cp314-cp314-win_amd64.whl (346.6 kB view details)

Uploaded CPython 3.14Windows x86-64

guppy3-3.1.7-cp314-cp314-win32.whl (332.3 kB view details)

Uploaded CPython 3.14Windows x86

guppy3-3.1.7-cp314-cp314-musllinux_1_2_x86_64.whl (730.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

guppy3-3.1.7-cp314-cp314-musllinux_1_2_s390x.whl (743.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

guppy3-3.1.7-cp314-cp314-musllinux_1_2_ppc64le.whl (760.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

guppy3-3.1.7-cp314-cp314-musllinux_1_2_armv7l.whl (709.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

guppy3-3.1.7-cp314-cp314-musllinux_1_2_aarch64.whl (731.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

guppy3-3.1.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (738.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

guppy3-3.1.7-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (764.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

guppy3-3.1.7-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (770.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

guppy3-3.1.7-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (731.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

guppy3-3.1.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (743.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

guppy3-3.1.7-cp314-cp314-macosx_11_0_arm64.whl (352.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

guppy3-3.1.7-cp314-cp314-macosx_10_15_x86_64.whl (353.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

guppy3-3.1.7-cp313-cp313-win_arm64.whl (343.1 kB view details)

Uploaded CPython 3.13Windows ARM64

guppy3-3.1.7-cp313-cp313-win_amd64.whl (348.8 kB view details)

Uploaded CPython 3.13Windows x86-64

guppy3-3.1.7-cp313-cp313-win32.whl (334.1 kB view details)

Uploaded CPython 3.13Windows x86

guppy3-3.1.7-cp313-cp313-musllinux_1_2_x86_64.whl (739.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

guppy3-3.1.7-cp313-cp313-musllinux_1_2_s390x.whl (750.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

guppy3-3.1.7-cp313-cp313-musllinux_1_2_ppc64le.whl (764.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

guppy3-3.1.7-cp313-cp313-musllinux_1_2_armv7l.whl (720.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

guppy3-3.1.7-cp313-cp313-musllinux_1_2_aarch64.whl (737.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

guppy3-3.1.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (748.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

guppy3-3.1.7-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (771.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

guppy3-3.1.7-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (775.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

guppy3-3.1.7-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (735.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

guppy3-3.1.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (749.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

guppy3-3.1.7-cp313-cp313-macosx_11_0_arm64.whl (352.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

guppy3-3.1.7-cp313-cp313-macosx_10_13_x86_64.whl (354.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

guppy3-3.1.7-cp312-cp312-win_arm64.whl (341.7 kB view details)

Uploaded CPython 3.12Windows ARM64

guppy3-3.1.7-cp312-cp312-win_amd64.whl (346.8 kB view details)

Uploaded CPython 3.12Windows x86-64

guppy3-3.1.7-cp312-cp312-win32.whl (333.3 kB view details)

Uploaded CPython 3.12Windows x86

guppy3-3.1.7-cp312-cp312-musllinux_1_2_x86_64.whl (727.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

guppy3-3.1.7-cp312-cp312-musllinux_1_2_s390x.whl (736.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

guppy3-3.1.7-cp312-cp312-musllinux_1_2_ppc64le.whl (752.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

guppy3-3.1.7-cp312-cp312-musllinux_1_2_armv7l.whl (707.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

guppy3-3.1.7-cp312-cp312-musllinux_1_2_aarch64.whl (724.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

guppy3-3.1.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (736.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

guppy3-3.1.7-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (758.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

guppy3-3.1.7-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (763.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

guppy3-3.1.7-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (717.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

guppy3-3.1.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (736.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

guppy3-3.1.7-cp312-cp312-macosx_11_0_arm64.whl (351.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

guppy3-3.1.7-cp312-cp312-macosx_10_13_x86_64.whl (352.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

guppy3-3.1.7-cp311-cp311-win_arm64.whl (340.6 kB view details)

Uploaded CPython 3.11Windows ARM64

guppy3-3.1.7-cp311-cp311-win_amd64.whl (346.0 kB view details)

Uploaded CPython 3.11Windows x86-64

guppy3-3.1.7-cp311-cp311-win32.whl (332.4 kB view details)

Uploaded CPython 3.11Windows x86

guppy3-3.1.7-cp311-cp311-musllinux_1_2_x86_64.whl (661.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

guppy3-3.1.7-cp311-cp311-musllinux_1_2_s390x.whl (672.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

guppy3-3.1.7-cp311-cp311-musllinux_1_2_ppc64le.whl (690.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

guppy3-3.1.7-cp311-cp311-musllinux_1_2_armv7l.whl (640.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

guppy3-3.1.7-cp311-cp311-musllinux_1_2_aarch64.whl (661.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

guppy3-3.1.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (667.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

guppy3-3.1.7-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (692.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

guppy3-3.1.7-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (699.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

guppy3-3.1.7-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (657.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

guppy3-3.1.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (670.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

guppy3-3.1.7-cp311-cp311-macosx_11_0_arm64.whl (351.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

guppy3-3.1.7-cp311-cp311-macosx_10_9_x86_64.whl (351.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

guppy3-3.1.7-cp310-cp310-win_arm64.whl (340.2 kB view details)

Uploaded CPython 3.10Windows ARM64

guppy3-3.1.7-cp310-cp310-win_amd64.whl (345.5 kB view details)

Uploaded CPython 3.10Windows x86-64

guppy3-3.1.7-cp310-cp310-win32.whl (331.9 kB view details)

Uploaded CPython 3.10Windows x86

guppy3-3.1.7-cp310-cp310-musllinux_1_2_x86_64.whl (634.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

guppy3-3.1.7-cp310-cp310-musllinux_1_2_s390x.whl (645.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

guppy3-3.1.7-cp310-cp310-musllinux_1_2_ppc64le.whl (663.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

guppy3-3.1.7-cp310-cp310-musllinux_1_2_armv7l.whl (613.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

guppy3-3.1.7-cp310-cp310-musllinux_1_2_aarch64.whl (634.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

guppy3-3.1.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (640.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

guppy3-3.1.7-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (665.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

guppy3-3.1.7-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (672.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

guppy3-3.1.7-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (630.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

guppy3-3.1.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (643.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

guppy3-3.1.7-cp310-cp310-macosx_11_0_arm64.whl (351.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

guppy3-3.1.7-cp310-cp310-macosx_10_9_x86_64.whl (351.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file guppy3-3.1.7.tar.gz.

File metadata

  • Download URL: guppy3-3.1.7.tar.gz
  • Upload date:
  • Size: 351.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for guppy3-3.1.7.tar.gz
Algorithm Hash digest
SHA256 4933cf325837f9401a855b6dfa773e4e0972ecaacafb5d378a3a787024a622b4
MD5 52d587b0f3577a52c3c15ac0683e04b0
BLAKE2b-256 637a71833c6d7a5ef228406c07b50b40ebf16c9936a02d7589627c285c6a3b84

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: guppy3-3.1.7-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 341.6 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for guppy3-3.1.7-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 c16065d08d882954ca80a81b3b6c2946e4dbbde3ad58f86b552efa15997bd619
MD5 40d5dd7000d28e0d5bdda5c6bd7325cb
BLAKE2b-256 000768ba694903113189fcaf7c86294b7acc37e5a102eb6c950761bc051b1f47

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: guppy3-3.1.7-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 346.6 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for guppy3-3.1.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f1d73055173a8d979cb2442a31da7d042c2e850c4f45e82d1f412025546ff58d
MD5 42ae1f6ccc7e92d678e12c4928bcf6a5
BLAKE2b-256 32fc9356beb69320c21b3bbb5f054c4f5871b63a956056dbddd7846fcd27d52d

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp314-cp314-win32.whl.

File metadata

  • Download URL: guppy3-3.1.7-cp314-cp314-win32.whl
  • Upload date:
  • Size: 332.3 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for guppy3-3.1.7-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 035c1f64dce212d2744b789d333e077c55beeaa3e2ff641a6e125b0bfa3e0647
MD5 31ca7ec39aee5532aa57b99c7b753192
BLAKE2b-256 6ff02ab95a8026cda586b23b16de67e4f4e3dd65f15b70b26e9c995a232262e7

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 00ab8d1c3d51e640b8f162ef80bd6c635e9e09d980faf4915afc445ad12123d1
MD5 932d42bfc098b170c2343c1cfbd3ec89
BLAKE2b-256 85ed7e3073f14633a5fda6b8519b631566089db5c3e2bd62158ec644239430dc

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp314-cp314-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 cd14b44331c7745874698d2a35dbecd70011e8bf2777418854c11b8947cfe742
MD5 74f559256ad0d7ab7b4bd159087345c1
BLAKE2b-256 97651da733d2922c0e81dc9b17de8ba1dc3107428519ed17ee2b7fce09a129c9

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 aae4d2890668303441f50457324901184598bc8c3b039398cf4df36b8e9500f6
MD5 a5b1437da2191933e65b0a9545b960d2
BLAKE2b-256 59df136b3c4cc4d0cad08ac4dc2c783d38090fb73d701d92ce4d6ce704f4c26b

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bb247d0ee975d743e22f5824ae81ee206740b5872391b80a96a4f83184c514f4
MD5 06b99201e7160fb8b90b12bf2b6e8641
BLAKE2b-256 256d39faccfaed473c8bde94fe7568c2485f51e443af9628b2e089fd8a49b80c

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 024856dff98c19e21013da141b48131a81704911963515a1be6a9ff4c9f9e5a7
MD5 b902266aa1913120ca99a319cb0db6d4
BLAKE2b-256 43911c98b1a56d3529ff0dda3d328f29c7deba052abe1bdf8eeecb29bfc04118

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 492468c5725beebd511e89ba8f94a8a77bd92b92deba32d9ef1772f6db874bfc
MD5 f5cc1bd530f7d6e54eeb90a0f0c85ac9
BLAKE2b-256 d93388b7ce86bcb63ca45927c956ac0bcd35c25b0c87e3fe4c552eb1f3f039cc

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 73faa311120f2d8835c29815fdeb67c31b174b03d7bd3cab365dda19a3efbea7
MD5 6a2e1025774b9daad45a95c503c6bbe1
BLAKE2b-256 0b469b00a8cf7fd7fb982385587e56c1ab5a3965215e6d2a5c37d150c421c9da

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b29be2894a76cfd615ea6e8ca6b219685b8b6cf1afa0742973ead98c59d774de
MD5 9d2ba60072571195de58adfd6c22f8db
BLAKE2b-256 64e0d0bca6c1a17725882baf48b0139f480304bd79c876f04370bb495842a693

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4168118398c983059ed828c00247c02a8731d9785cc86d97a8d46a7df9bc99b4
MD5 4e3bbf8347a579576d94a93f533749b5
BLAKE2b-256 4c5bfc033e3e2242acb651b07e79ad6502981657298da78ca956357190c9f333

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3540cc13b010c687ace2bb94c8b8d13d36bf82f6824ee2d36fa7ea8f704b00cd
MD5 ffb29668e03b1ef3e1cc4068c2324554
BLAKE2b-256 19063cec1a535c20dc3f0d5d40dc729b01c2becb8c2cdbfa322010050cf9ba4d

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 16ffb175f7c9833085de5a2514796937c72711a97095320bd829b7f513c50331
MD5 7d0648e6ce1811bf9447007a89f7f0f5
BLAKE2b-256 da4f2450e3abcddd026bbbbcfc36871ef6b2161b5a11cbc00e85599163c580e4

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b00f63e2a4544449f123e2f2de0779afd1ba649b836aad0fb9725cb007aedc54
MD5 fdbabbf82ce8c93a27742406345617c3
BLAKE2b-256 c1b854278795771fbf82d33361ca8968445b4b59577f26ceaa34cd9512ffbf73

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: guppy3-3.1.7-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 343.1 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for guppy3-3.1.7-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 b01714d644548ba2a54a6c41a7fe794bde65d858dd3c84eab4530a7044654bfe
MD5 015b274b6596a13f798e5bc2e2d3516d
BLAKE2b-256 5043273b3f6fa5a2c8dfb9f86c37b89ee1d45fa0702681e4b33bab494f21452f

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: guppy3-3.1.7-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 348.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for guppy3-3.1.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bc406e25857004072bc2d36e1c3b8b1881485ebd9a77a904028d28f1101f1e52
MD5 9fb7c974b1548a19aeab09deaf8e8faf
BLAKE2b-256 e9c439b1256968477ceb8a81bb4ceeaca14d88072218cc7ab26f9476c9621afe

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp313-cp313-win32.whl.

File metadata

  • Download URL: guppy3-3.1.7-cp313-cp313-win32.whl
  • Upload date:
  • Size: 334.1 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for guppy3-3.1.7-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 556fb6f857077f11fb8ddb12d0ae7f61e645abef3cc1728710aef87f53391a59
MD5 8b93be6233f0a63c81fd5c28a3641e9e
BLAKE2b-256 4fb9d4f78f505ec12cf6a4487e62ae0a45ca3ac5d2a2f076ff4ec2c62859d2c5

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d18cd8a8fd0c897517462331d3e6ecc57a08e23b34a80348fb8b8238a235e53d
MD5 54950c6fad5749714d97feb922212778
BLAKE2b-256 1885bf19ff681b6b5efb856b1a92e85c6f4c51e580e453a28005a76f04de68c3

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5d517c3fa03e038dca146e497aee751d0fcaa4623f5cf9632b2a208df40e6dbd
MD5 457fed3c8136ce42cc512ec292a9cf90
BLAKE2b-256 76c2aa93e74f87dcfdeafe5f835dfb5b1bf11f869705ee08c4784a7f57c1c7f4

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 229f2a63ef0a003f2eba02fa09aa895ac19c9ca79b2779725afe8ce2be14feb4
MD5 6eece2d1c287e60da5471c9848c5d3c1
BLAKE2b-256 33df4ed55ceab75a4c0230d604d2328dec8aa99d8da4f90917069335d1fc57e9

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6ccffef24fec92a87b60442a94218aaa00d3b9f7b2658eb5ae98468d6479792d
MD5 4ba0598d8181f33e4af4e2d4ecad8d02
BLAKE2b-256 360b2adbfdf24b8d1e0d8eefeb312a3610135b3131b6fcfd155f52c7740a419f

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 10a74ccd8710e2594128f87cf1cb8ecc1fc60460add9e2203ef8084026fe98ef
MD5 0207560d3a021831a6a3cbbb9f31702d
BLAKE2b-256 388fab1631a3fe19b30d98a63e0e4e0ff34a94acc7a73c85ec454980e4a8828f

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 615a945c29daae10300567cea4d1505c3acbe446e8d40cad0ab04b500b4193ae
MD5 8017c7940592cd76642430dfa5b9b5ee
BLAKE2b-256 8d4a4ca22cbb0754da6540c20ba996daf61136ff1ff90c0ad7528450cf757b85

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 49789e631678fcebde865a5661b181a87ec02798e1ada3211bcd4bb3ecf13783
MD5 41e13a2f85470fc08b7cf0025e7efb25
BLAKE2b-256 3095602ec6c0072c49c88d8b363377372b592477d1214bfee79e22f2663162fb

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c102bbde7ad2a9f8618d2703a2acc1845cca133bc0ea3ec25044bce61f50cc52
MD5 578ed9e2a6843e220a7274815279ceca
BLAKE2b-256 cdea841c61a6f55ee890908f296ddb72c8185f28b95dc555ac43437596b9b09d

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ae038df0aaf33f37ef4ef8335e1fc9086b7401c973229f38bd2fc7939ebb845e
MD5 d121d8c0a87fe7c8504efbb443493fcf
BLAKE2b-256 9c4f2a1412024e01799154eb17300b13a26730941495d4e03986c8b40b13164b

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c229b0d249d7c3f0b0513b6449655b182525fb3e11df10729f98b3467f4a0ad6
MD5 9dc5d727acff32b18fc0d4222792c5c1
BLAKE2b-256 fc69ffd7ff971ca4aeed53dae10cf7db8e03fa98d4547b073a848ae58f451d1c

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d779fa9a522e3df94afdb61862c22116b0f2e28743fc54a2401f970cf2939a9
MD5 fbb6d8d5c01738f29da8bc0791c4b3a4
BLAKE2b-256 ac2cdd0692e40b3877449ac13d4e6d65f77989c0a47d916fc565a1f4ab988125

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 57f166575c7c5490310784e8bf6974210bbd77f03ac45d78471e6f7a18a87885
MD5 f5c1846466a774d202863cffe1b60e63
BLAKE2b-256 8668cf90938ac24140532f41e507a6f43c8b75b71492761df16148b1ee1832ec

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: guppy3-3.1.7-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 341.7 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for guppy3-3.1.7-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 668bc0c287190a6308bc70fdfca352188a9ddbb11dba56148d2b5e9ebcd6de67
MD5 12cac6222e71f2ef0fcb7745bb9fa4fb
BLAKE2b-256 d9dd334e5939c0ba9133e56f0c05b11687da95d4b09ec46915dcae9ccb336688

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: guppy3-3.1.7-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 346.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for guppy3-3.1.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a0974927aa7bd1700fc0ad9411b6536508cdc15b1f967053eb48029346b504f6
MD5 62e38eff1ebff6f8b652ff07cfe297ef
BLAKE2b-256 86ebd15a56425c37380b3d03394386d140ffbfbf1b8aebc980463d972b227ee2

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp312-cp312-win32.whl.

File metadata

  • Download URL: guppy3-3.1.7-cp312-cp312-win32.whl
  • Upload date:
  • Size: 333.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for guppy3-3.1.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 11859767ac37f1a7628d2ab4bfa59ec3880fc20c3d63c76540feb6495cdc7703
MD5 33a24f3ccc53e7d43084cf1f01b0f41a
BLAKE2b-256 655dcbeee03d0a8404a5402eff69f5d674f4f3b867b5fb6f71ecd806b39702e1

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 27a64e7e202c227aaf2f089c8e2003c27ffd34b20bdaa3ad4d85187e27434886
MD5 39b1429605e89032fd3cbfc493544653
BLAKE2b-256 d4d8e864a28976295f23b2f61f6326e8fe4b2714c03a648e7798a2bdf7fa0764

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 11e2d82277ff77305182a851a74ff04f472e8619df70310becf72bcc1aa2c569
MD5 185602162264d866d5dc880f822bd5a9
BLAKE2b-256 bc863993e301fa6b2686c192a05a48f558ef40877e8a9953a780b9e986729c4c

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 853c9f4dbc7bb0cbac923aa01b80c6b826e0df8c550e0e86a5ccbf76aad12079
MD5 72ecc41c8f408ab03bd0c6bb284ff7d4
BLAKE2b-256 c668dfd4e318bb4e9b4cb9c8d808fe0b70ff0af902d3bb64520f56782e57e057

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d91a78e85c824507c0b957568aaf365ca80df98791acef0a81690a8e5111e82f
MD5 24bed7471ff0bc9fb7dbb15c0df0cd07
BLAKE2b-256 59ef6a09ac65a7ee59c651f45e8fa9cc76402825ed8bbcdc6471a54021d87f9e

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3c7ab675fb0570b8256e7868910157aa2c02aec6be74cfdf05917e9308f4b6c0
MD5 cd92f163925818dc867e0f1b181c8ff9
BLAKE2b-256 6ec7a9a44fccadb74005e1643e7ef1f3e1cf45583c124bf61c6c6a0e427a9084

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c6e80c92568d2fdff2f010b209eed50be04794ac7d26ecbeda8762b451a2b56a
MD5 36dec8c492e3cab2b7beb1fc58e7cc90
BLAKE2b-256 a2415a4202e5af318fbac5711c2858d43221364b6f1fdc1eb59bd649fcb4a827

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 0150cc1d019cf0e9b91669b0a6d9c8c134b47f1d313aa269ecb5363aa9ef0408
MD5 5ce75c0470bfedf93f23dd801855d574
BLAKE2b-256 53ff246a178ac0b0a0ed177c931790748846a32a4d606c65e5c1305d5586939e

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c203b8bbc43a2f9a047a2fc6798dacf3e7e8598335eafc74f6aa79c4b4a7516e
MD5 abe0baf1f2679d2c80a4c59448e53559
BLAKE2b-256 f22dd8833d07a487dff23abfee09258ddad8304b9f7cca3fdd4bb8133cd30da4

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 5b6a06a1c6bd092f04a6090b1c2002386df420daaa41d073ec15936a48da2e6a
MD5 ca961ef929771fc93619009acbe30950
BLAKE2b-256 1f634a855df45c5bb61282c1e2789d0a5334cdeae5f9ec423d1d0978f8b45939

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 26923611fd85efa81c0943fb5dc9bad1cb6f2ad7ac88a5b323bb4b3f163c0390
MD5 5a54580b0ed28fa8dc160f6b2150bdb3
BLAKE2b-256 174391edf212a4c3a542f60353d5ade5203af58400fa5fa4ea70a29ef439478a

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad9355dae784d4697b03b17f6189a472c37b307079678ec296e7be11064572f6
MD5 e37fe314b77844b3ec537b8a83b63f11
BLAKE2b-256 c8b3bd0c511c42e3199a3efd001a70e43c4b2bbb510a02785d05674cadbf2b5a

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6864b92fa5066b369aea743b80f5a7d4b5a81e99839c7bc891a2c4343f479e7d
MD5 4e4ade69d24229a958224f01b68b9b44
BLAKE2b-256 c6a090bb4a2ccdd78827a1a0d3feb8c78f32d096f37b0ef51bccb31f0e34077c

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: guppy3-3.1.7-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 340.6 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for guppy3-3.1.7-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 81efdd32c808f4dcafb6858a798ef4c61fc2ee52ca48124f1f7075b11b71e6c2
MD5 b943f55777df9f307213a35ca6814312
BLAKE2b-256 644359ad4a7a0dd684ef71a7d3559b33aa17f5aab69c7bdf69434acf2a7e1f7c

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: guppy3-3.1.7-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 346.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for guppy3-3.1.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ef9d74338b78a596c9b87effdd17484e6a2a1ccf4cc63cb7953a28bf2bb7b8ec
MD5 53209fdfa6bdf467e0b4c551facbb809
BLAKE2b-256 bd8d980522624e23b9910998171279277f592c05a41e74105739b730a14ab993

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp311-cp311-win32.whl.

File metadata

  • Download URL: guppy3-3.1.7-cp311-cp311-win32.whl
  • Upload date:
  • Size: 332.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for guppy3-3.1.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b611ea9f3422364d025d9c2bb7ef17229f7980581fc43b52530ddda7576ac5c9
MD5 6f4bd45c5356be179a4b84cde4abe623
BLAKE2b-256 fb6ec6bd694caa6e3d191def37af6bcfd42fc573f5fb483bd8c3c6a854050d50

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 529e30418e97ead41dd61a6a286e63bf6c326828438bcafc1a6efed0dc2c46f1
MD5 c53ea1c9b6d7ab4e7fa0b5f43b51fa6f
BLAKE2b-256 4f8a8dcfd3b0fca558100e19e8d47f4822aed8af966d85196199453d1f18f232

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8ea613d031e9cd10896993d553e894345ed95d1f4039fbb3bb16ed2fc33e83ff
MD5 1efb083cd17e09973abbac956e50c163
BLAKE2b-256 9ecb81ae818f79077b7657ea828dcbdabbd750b281ff6045dffa9472171a70ee

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6d7841c9ea3519fd6fbe913ea271417012c28d2bf7d243c3bcd9c7454b52449f
MD5 ed74ff6e49e6f6fad2762c85da00faac
BLAKE2b-256 8be2252c3c6b9bdc51fada00eeaaded46116626ccc9ed21fb7e29dd27e8f3412

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b86fa5d70999526e283d79a5a5926d849b55ee9ff8686bd0d70778911888be1c
MD5 15c6ef8ae1a2745283a877e5e9b9acea
BLAKE2b-256 b805927e5341f9c49b4ad9f57dff16dfe64c175a5093f43e839a2151c6e1712e

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c6742287e1680351cfeb00f33aadffe9964367bf15e13b1dc6fb8316bf8ca19
MD5 3e4234464628d704e08436af9e88eb64
BLAKE2b-256 deb18eef0175eaea180d6990207064110a9f3b0ef765daf422a05501a550461e

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8801d814bd1f999e47ad34525c9f3e22f758015941ead07e5fa13688ff870af5
MD5 031959a0ba3004065291284d6f02e883
BLAKE2b-256 919acf9125707cc3c5b1defd8ba19f5572d8211abd91f57ba46b89c77ca6c9a1

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 7647a75ba8c1e67d3bdbe6d42f5885f8bf66486747bbe1e197856f399f94bf4a
MD5 4e38fc870e5d8b52cce9b85ab084d5b4
BLAKE2b-256 2d7eaa9b3e271e63d749bbc8663c225da97dd326c869f400e78e5d75dc361d30

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 9a273fdb5c2cb8ab4613bcd1cf76825e3336a65305bf6549f0d032cce3a0ef04
MD5 22a6ec98fc217b55963c095bf8d1d85f
BLAKE2b-256 b4b6286267e953de36936aa84128357205b89d56ad6c8e573a5bdad272a02b54

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 0a6e34fb5b174c385c7750fb5beaf501f2093cdb8821fd44b76831bfe754267d
MD5 bf6f03441e6a0bac9f303f6e6db53a87
BLAKE2b-256 af85bfdde7a782fdb0d9b847ae1e047359a0ed5f4bdcd03068446951fd50c438

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fc00b1ae26777d560bdd29784089752c8b49080a72db8a8ac79a7e868869b3fe
MD5 0d7ae1e372dbbb1ecfc6792c34c3d776
BLAKE2b-256 488b95869b225fdb2445df75d9d9afdc1eca1d5e019818aa97a65f14ddbd43a9

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab780cd3046acd2581aa7aee084417f61ddccb79ce5ed5ea2c987a45cd570eef
MD5 2902093b9a642d8bdf935f3f278047c4
BLAKE2b-256 ae741b2610f618c98cfdc42ba9c5e8648cd2d981aeac3b84a31d7d78ff2280db

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b2764bc517e19a261522c0064a22fdbaf39a638acef7667a54abb9fd5015bf6d
MD5 ac1b251d7d82cfb429b01e1c4c6878dd
BLAKE2b-256 270d80946eedf2b147a1944b052524281492e10c69974430fcdaec4e533f9b0a

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: guppy3-3.1.7-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 340.2 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for guppy3-3.1.7-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 6ece03ae06a71897d010e4daf68871ca641ebf52290d9d9f7d827f5047c74af2
MD5 52a67e4f384211d41d5fc1ea2fe5d79b
BLAKE2b-256 050b61d4ee92bfdd0434b31674496b2ff0abc921c547032626bf5c9edee2eb36

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: guppy3-3.1.7-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 345.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for guppy3-3.1.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1ab8019ec76b53276edf0eb2eefadea3d602aef14fdd1c40a8e5b3421d430987
MD5 1baf686608a41cae5a9799a896ca208e
BLAKE2b-256 adc3d215ab4f8dde6bfc80dd7b64c5e38bec543be8600b587a60c39e43516cd5

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp310-cp310-win32.whl.

File metadata

  • Download URL: guppy3-3.1.7-cp310-cp310-win32.whl
  • Upload date:
  • Size: 331.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for guppy3-3.1.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6ed4ca8a01ad59ccf8f1ad7978d491ee01f38576a34040f49af0fd2ceb86aa5a
MD5 2c0c49ccfc2931bdb36891ce911e7080
BLAKE2b-256 18407756122e44b37f1a8fc0942a381354b52979ddce6d7fd3fa48f19f21a8c5

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 995bb80ad01c73bf59d29985a2dc0d772ab6ae1fe7af9076c100fb361127b04e
MD5 5500964faddf4989b0eeec8621ae5f83
BLAKE2b-256 f9a43d237042e633c906804a8b333e01be52f5348e40c14bd1901047373c4657

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 59f7705cd10cfbe0e46a1b1e4ffdb4125fa4d69d351a0e9a37d6aa6e587ce333
MD5 01f206eef33d3aa22c37174f901a25e4
BLAKE2b-256 8d65cb461e443bcf806a745f7c4726e49edc62e671e7d67ca4d35cd8532a3ae1

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 932aa30b2b6f5522dcbd148bd35420c427ed908e1016cf8fb53b6b2d65e7cc0a
MD5 633ad57baa0d4496c12554668554b391
BLAKE2b-256 278e7f98707a9461576105ccc1557b6dd83a89f6404c35458cfd64f9c1e4eabc

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dd0da3e2ed8c0bacfc34f805414bf1b7ea32e91bb218d48052971786497de4bc
MD5 3fb69534795eab340c8f5da0c2198359
BLAKE2b-256 2923287bff8e5c569eb278ed5edc38ea080c654cf77c402bf704e3513f93511c

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 df82d7346e83680418b7690d4a51bdd7e4b1570db967b788d7fb7ca91498fb1f
MD5 77b5b2f467390adab5bb38d54cd0f67a
BLAKE2b-256 56997b4bd481c11b0e9faa973c4abaeaa8006560d4b647b3113fb43dc2c66ff3

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 830f44340a1c3b943abe99b5da61a670856697a8e78c0dc5ec43459bd3eb1182
MD5 d63183b2e365a9c3cfdf44688e0b1eec
BLAKE2b-256 a9b2e3f7e1de65c58f4ad1e8950386b664bb3b834369c4713e089704c5df9991

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 628296ac802ce78f14606aee8d0260b545f9dbb888d5fe0371c21d119c5e09b8
MD5 1941c3c8ac37a73ddd6d483395b8bbef
BLAKE2b-256 2f74c85e8997f703ad5c2e12ca1c73d5007ff84fb6857945c3f903d15491c3c6

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 24f74409c983fb5ec8823ae48446b8caa3c95657815a30cb49668c8b792d6a30
MD5 f649979ea71ce3982c4b75e957f00601
BLAKE2b-256 05aa3b3c695ebb9947e475f8b93d9d11c7745f86e2d16ad8d178209f6f81e4eb

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2907e7638b23752431609e4c07ad9c3224033397f614d83cec8cbb52cad0f5a1
MD5 22843579481d32167f6070b46ec94bc4
BLAKE2b-256 eb63e053535ad56fa937bb4863f5c7a9305c55660230335e53da0e1a8c8d0996

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f49c468734c3b1724495ee9c83fe37ac0a8c935abfead0ea60daaa4960319dfe
MD5 0e56fdd6c8b51e33d528320039d10a3c
BLAKE2b-256 a0f0c10b4f1527786be227ef9af7e6ff97ceb976d0afa4ec6a8460dc7d9efd20

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 778c32948bdb29b1d20383dd4c1ce5342952be03b24b6cd355abb63dc5a80413
MD5 5bded8bf63fb0c61a7cf53b39842bb6b
BLAKE2b-256 cdd30e00195405ed6f269a45525868af0b3ef8b197b90bb97ecd61a9ce759ca1

See more details on using hashes here.

File details

Details for the file guppy3-3.1.7-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.7-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2ccdf728c71b791e6eba8731bd6243efd37be5c3ccfd9e4a1e8142a7204d8572
MD5 b3941f6adf58d3be78b2c657c2c7826f
BLAKE2b-256 3a39faf6b3e82a456a6cf085e1d722db2f7be64ee8ec25c5f963ef414c03026a

See more details on using hashes here.

Supported by

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