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.8, 3.9, 3.10, 3.11, or 3.12. 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. To use the remote monitor, threading must be available.

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-2023 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.4.post1.tar.gz (344.1 kB view details)

Uploaded Source

Built Distributions

guppy3-3.1.4.post1-cp312-cp312-win_arm64.whl (341.2 kB view details)

Uploaded CPython 3.12 Windows ARM64

guppy3-3.1.4.post1-cp312-cp312-win_amd64.whl (351.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

guppy3-3.1.4.post1-cp312-cp312-win32.whl (339.3 kB view details)

Uploaded CPython 3.12 Windows x86

guppy3-3.1.4.post1-cp312-cp312-musllinux_1_1_x86_64.whl (720.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

guppy3-3.1.4.post1-cp312-cp312-musllinux_1_1_s390x.whl (726.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ s390x

guppy3-3.1.4.post1-cp312-cp312-musllinux_1_1_ppc64le.whl (745.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ppc64le

guppy3-3.1.4.post1-cp312-cp312-musllinux_1_1_i686.whl (694.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

guppy3-3.1.4.post1-cp312-cp312-musllinux_1_1_aarch64.whl (719.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

guppy3-3.1.4.post1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (714.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

guppy3-3.1.4.post1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (721.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

guppy3-3.1.4.post1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (739.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

guppy3-3.1.4.post1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (713.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

guppy3-3.1.4.post1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (688.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

guppy3-3.1.4.post1-cp312-cp312-macosx_11_0_arm64.whl (362.9 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

guppy3-3.1.4.post1-cp312-cp312-macosx_10_9_x86_64.whl (363.8 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

guppy3-3.1.4.post1-cp312-cp312-macosx_10_9_universal2.whl (458.2 kB view details)

Uploaded CPython 3.12 macOS 10.9+ universal2 (ARM64, x86-64)

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

Uploaded CPython 3.11 Windows ARM64

guppy3-3.1.4.post1-cp311-cp311-win_amd64.whl (351.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

guppy3-3.1.4.post1-cp311-cp311-win32.whl (338.4 kB view details)

Uploaded CPython 3.11 Windows x86

guppy3-3.1.4.post1-cp311-cp311-musllinux_1_1_x86_64.whl (679.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

guppy3-3.1.4.post1-cp311-cp311-musllinux_1_1_s390x.whl (688.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ s390x

guppy3-3.1.4.post1-cp311-cp311-musllinux_1_1_ppc64le.whl (708.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ppc64le

guppy3-3.1.4.post1-cp311-cp311-musllinux_1_1_i686.whl (659.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

guppy3-3.1.4.post1-cp311-cp311-musllinux_1_1_aarch64.whl (682.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

guppy3-3.1.4.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (675.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

guppy3-3.1.4.post1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (684.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

guppy3-3.1.4.post1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (705.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

guppy3-3.1.4.post1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (676.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

guppy3-3.1.4.post1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (654.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

guppy3-3.1.4.post1-cp311-cp311-macosx_11_0_arm64.whl (362.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

guppy3-3.1.4.post1-cp311-cp311-macosx_10_9_x86_64.whl (363.2 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

guppy3-3.1.4.post1-cp311-cp311-macosx_10_9_universal2.whl (457.3 kB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

guppy3-3.1.4.post1-cp310-cp310-win_arm64.whl (340.4 kB view details)

Uploaded CPython 3.10 Windows ARM64

guppy3-3.1.4.post1-cp310-cp310-win_amd64.whl (350.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

guppy3-3.1.4.post1-cp310-cp310-win32.whl (338.1 kB view details)

Uploaded CPython 3.10 Windows x86

guppy3-3.1.4.post1-cp310-cp310-musllinux_1_1_x86_64.whl (651.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

guppy3-3.1.4.post1-cp310-cp310-musllinux_1_1_s390x.whl (660.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ s390x

guppy3-3.1.4.post1-cp310-cp310-musllinux_1_1_ppc64le.whl (679.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

guppy3-3.1.4.post1-cp310-cp310-musllinux_1_1_i686.whl (630.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

guppy3-3.1.4.post1-cp310-cp310-musllinux_1_1_aarch64.whl (652.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

guppy3-3.1.4.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (645.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

guppy3-3.1.4.post1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (654.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

guppy3-3.1.4.post1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (676.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

guppy3-3.1.4.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (646.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

guppy3-3.1.4.post1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (624.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

guppy3-3.1.4.post1-cp310-cp310-macosx_11_0_arm64.whl (362.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

guppy3-3.1.4.post1-cp310-cp310-macosx_10_9_x86_64.whl (363.1 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

guppy3-3.1.4.post1-cp310-cp310-macosx_10_9_universal2.whl (457.0 kB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

guppy3-3.1.4.post1-cp39-cp39-win_arm64.whl (340.4 kB view details)

Uploaded CPython 3.9 Windows ARM64

guppy3-3.1.4.post1-cp39-cp39-win_amd64.whl (351.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

guppy3-3.1.4.post1-cp39-cp39-win32.whl (338.1 kB view details)

Uploaded CPython 3.9 Windows x86

guppy3-3.1.4.post1-cp39-cp39-musllinux_1_1_x86_64.whl (640.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

guppy3-3.1.4.post1-cp39-cp39-musllinux_1_1_s390x.whl (649.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ s390x

guppy3-3.1.4.post1-cp39-cp39-musllinux_1_1_ppc64le.whl (668.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

guppy3-3.1.4.post1-cp39-cp39-musllinux_1_1_i686.whl (619.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

guppy3-3.1.4.post1-cp39-cp39-musllinux_1_1_aarch64.whl (641.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

guppy3-3.1.4.post1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (635.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

guppy3-3.1.4.post1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (643.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

guppy3-3.1.4.post1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (665.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

guppy3-3.1.4.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (634.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

guppy3-3.1.4.post1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (615.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

guppy3-3.1.4.post1-cp39-cp39-macosx_11_0_arm64.whl (362.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

guppy3-3.1.4.post1-cp39-cp39-macosx_10_9_x86_64.whl (363.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

guppy3-3.1.4.post1-cp39-cp39-macosx_10_9_universal2.whl (456.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

guppy3-3.1.4.post1-cp38-cp38-win_amd64.whl (352.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

guppy3-3.1.4.post1-cp38-cp38-win32.whl (339.6 kB view details)

Uploaded CPython 3.8 Windows x86

guppy3-3.1.4.post1-cp38-cp38-musllinux_1_1_x86_64.whl (658.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

guppy3-3.1.4.post1-cp38-cp38-musllinux_1_1_s390x.whl (667.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ s390x

guppy3-3.1.4.post1-cp38-cp38-musllinux_1_1_ppc64le.whl (686.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

guppy3-3.1.4.post1-cp38-cp38-musllinux_1_1_i686.whl (636.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

guppy3-3.1.4.post1-cp38-cp38-musllinux_1_1_aarch64.whl (659.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

guppy3-3.1.4.post1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (649.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

guppy3-3.1.4.post1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (656.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

guppy3-3.1.4.post1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (679.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

guppy3-3.1.4.post1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (648.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

guppy3-3.1.4.post1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (628.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

guppy3-3.1.4.post1-cp38-cp38-macosx_11_0_arm64.whl (364.2 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

guppy3-3.1.4.post1-cp38-cp38-macosx_10_9_x86_64.whl (365.1 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

guppy3-3.1.4.post1-cp38-cp38-macosx_10_9_universal2.whl (461.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file guppy3-3.1.4.post1.tar.gz.

File metadata

  • Download URL: guppy3-3.1.4.post1.tar.gz
  • Upload date:
  • Size: 344.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for guppy3-3.1.4.post1.tar.gz
Algorithm Hash digest
SHA256 05648b88601d57d6f9cadb38e0327833cba50f466381df16a8dacc54fa71ed4e
MD5 2f8bcf13cc604f70d650db2210b4f60f
BLAKE2b-256 59d4495a4e0357474b6df35dd29ed3674a79e8576700e16f2adc37b261b8621c

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 0c7c106a6b3a953564def5c1e0f284e2f0caae6179118dcfda62aa0b66b5a3d8
MD5 aed4d2d628b93d8737851057ebf79f97
BLAKE2b-256 1db8b199ef9132397da291de3bec9306b7a84b8db314e09649d199f09b99825d

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 92b18373a5a89d28d294c15c71af5ae609e29563822055fa4d6fd631b96d66fd
MD5 f19848daeb590addfb5db1a697ca7bd9
BLAKE2b-256 273fce6581fa2918bede011390a60c01c2a4771988194e578e1fcddba2ad65ff

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 cf2735675a5b97c227c886db7e4100e02141f2351392532db4bad745deac377e
MD5 1dcc875226234f29e9796c2c1fb257ae
BLAKE2b-256 48c1787ff300d5c317818fbb36f7008145e5153222d5b45987611d62f1b8c06c

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 94a31d5c01b0c8ec4d92d880e532a55c7f188a57ccc2923d83f9fe20a6bfd47c
MD5 1d0985511205e770ddb10ae65f977b84
BLAKE2b-256 531582c338b7a1d802cab9030ca77370969b6ec8379fc261e1ec42a23f7b5767

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp312-cp312-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp312-cp312-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 f03f4da27cdd87e322d90f7368cae5ad09990b1522f6775f1daa81d142d534f6
MD5 8e8a44e73e7ca59514d21cc820fff795
BLAKE2b-256 d3ed94c02fe7dd7f864e680a11293c2e0048afefe074b7bc0bcb83c75c395f88

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp312-cp312-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp312-cp312-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 60a8acc5213cc74718b2e4afda7a8903f718cba4cf95e53c27e3086faa1a3d27
MD5 accb3edac2b8fff7ceb827ecf722e8c4
BLAKE2b-256 52cf0ef9e86d06594498d5e11fe7b50d30b3cceeceda5c5214b648da5a33a82a

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 7da7f720e2089c7e552677545f23e4d27a4f868b895569cc8a809e1b9da738d4
MD5 7a1bba1ea8cd9d25061978a4f35300de
BLAKE2b-256 07bccf60022d8d030555798fb0e265f973754cb0bd40d32f1848b09a244f0740

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4f7260803d76799d33785512bfa915d8db82cc3a7dee392985e89aec3763da9d
MD5 06854caab2a5eaaad567e288d23afa1e
BLAKE2b-256 9c1d2180944844d732c1f97a030574e0b1289a14c30ed8e25611ad47fce322ce

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f649eb24a12d1d7b1d438001c5d741c4b4b68baa2ee569436f77386945727841
MD5 236bdac8b0f9770bfe238c57d76d3a4d
BLAKE2b-256 da6dbf2b25f48353252ea33bbe31354c1b810da8b9a15badacd2c6b28cbbc426

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 32f2f67c701a089d44058f33ae20d75d50565b5a8bfe9ac43690f7de60103e28
MD5 4eee73fb797fb78691b8eefb79e5e624
BLAKE2b-256 b1e20f609ee6186e1f14edc3ebf13adb6ed00d56e5a4c7ca9d244378d6c6f202

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 19538617df810327b50a8f32cc5407e71f7bea23cfc33644df6716f4cd92e025
MD5 f9cbf94bac5e05d562b71d21d670ac1c
BLAKE2b-256 82f2bf5a18af8797a59f38847b1a1ca90a40c21339767fbba71de67099adf264

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fa78c57420b8d624af16573dd4da570ebb420a3af474b30bd716f4f1a1933824
MD5 d003dcd0746c41b9b53bd112316d9d49
BLAKE2b-256 73cdf76d9af43d60aae81c62fa77ab9cfdd53a67cd06c76ded8eb872e8e58f11

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 75b0fa18775a9dbd91003530755134f29c29878f711e2b5dcbcaa964359eaf20
MD5 d83a14b59004e241028238c993dae7d5
BLAKE2b-256 b2f3c52f8c284e992a5288dae8ad60d160d4603c9e9bb1abd6a46bcfbfe9d58d

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2bdeeb7fdd090a6e28dc065d7b4e4e64ed82dade4dd75399885c911429d9ffd0
MD5 73d79e17f915716a18979fecae929fda
BLAKE2b-256 3167feede27ea4f3ada6cffdba90f6c18ad6b695f93785de4b897c3c4f74168d

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 421fea4dcee5967bc2ea3377b7ef9e63f6ac170063f9365da852fc1b191b75a6
MD5 c8bf22f4bc0822b57e8ebc923cc3e6e8
BLAKE2b-256 c54b5a6a267a601c86eecc320c60930fd870d6c1c8f2f4bd0ca5bf46f641191f

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e83a0ccea6421bb1c1f72d469ea1ae9fdab57814e59174234083c3eea96be5eb
MD5 2806cf1541b93085df382d5e197603d6
BLAKE2b-256 2d7cd41b000e55c3534eb958ca0f68b91ad1558cf3abc35acb4232973a041e22

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 fe4c29aab53d4729d349dc65b5ec1bfbf84ca693af8d135a5b33382c910c03d7
MD5 b2956b8e4d6ae0ce7e99ffa0b5079a32
BLAKE2b-256 2392c196db42cc5f2f42d3cdcc4be947ef8353496dc7e5caf3a0729e89fc2077

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e51d795e6f3ca2d75c5c9cb29907b175d04b28ef6bbbcc419fe1a004513dcd7d
MD5 973c584fc34c7be751ca440bbef84547
BLAKE2b-256 cf2a64ce40b7e89800c88c6af521ced3487d6357a132eb455cc5006a7ede7afc

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2885792236b57d7f818bcea59b0f3bb3c0110a0215afc5969e975b86d3c93522
MD5 22f763922754773ba1bf16230d33a759
BLAKE2b-256 111513f25776f543d2542bf34a7a8bd3ae576a9b97a2c802132d46abd9ad2370

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ffed8de8bc7bfb36ba88303ebb7473fd7ad95c01a6f055daa13a28dc2b807c37
MD5 4a9068b4ae0314e00f559aea0cb1aa17
BLAKE2b-256 c8d7eb24ad233390781d797931a75f6b94e3caa3b0aa7a664ff447e22c913321

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp311-cp311-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 83355cb6c152f143c5d8a6352e06e05a31bd39c39dda57584a3b20a9c840ebc4
MD5 3b3e9b5bcc9c0387224df1560aa5cb3b
BLAKE2b-256 8f1c88c8dd384092a5d1447cf155eb56e00761deff5ef1e3822621f14ca22aa4

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp311-cp311-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 f44fe0396a5b426780ecd7fafc2c5512886d4c982471d1657cbebd431c5cf4d6
MD5 e7bd464bf05b8de4adb0d886b7f4b062
BLAKE2b-256 3ea0b5ce4500f81f4f2d1f8239d7a0bfea43b4a775ebbb9cd095515a59e7c1ed

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 66d34779d137e347751914aaaffd7603d90f403d1fd4689dc0c3aeffc202d1a5
MD5 5d72f1cd74a45b57a67104d07049cc21
BLAKE2b-256 ff6a802fdbd5495c6043509004012efa31160e1f50e149484b3b72c397a49408

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c27f7a6446480cab89156fea230fd2cc8c293099dc4cd350ff581931a0d73c58
MD5 34a31a25629175531207b49cfd9f8885
BLAKE2b-256 8e43803ccf2c6f515ee070f1d80e5b8b4361b2e090200ccff4f390d15c0326e5

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d1c897fa9f98255abd2d42b166b4fa968f25080983d03b20a479ae9f8c9d2d8
MD5 c4ae13ff69748e81e2dddd126f335f02
BLAKE2b-256 25bb5732c2678f07922e77cabec7344c0ab9665fba7a6e659be5ab2e4c154148

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fc2ddbf6d90fc06d86e0405a2aef139c2152f322a0104be918467a96b467fa67
MD5 59b221941067fc9797207ca6d0f3d8a5
BLAKE2b-256 ae5d225d3e900916277032ebf2a1a7763f8c20871637f7f266618b361f5498bf

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f21835b609aa88dd25da59e820ccfec0e104d8014a6db7647e8c81e31811849e
MD5 643ad24c9170bd4048e6a6ee95d58bd2
BLAKE2b-256 e1643e013e2705c50e446c5aa405ddac6e9d32d3743264f5615d5651c653b5c4

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 64ac62c1a1ae4c536314df943c84491e11cb4eee226b5da0abfd7fe0e632c161
MD5 7538a835ddca53a7b97aa3f21f0ce82c
BLAKE2b-256 8eb6c95d917bbb170825607bdd610161f6f2c129153ffb92d40bccbfe34ade0f

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 622779aea252099c23fb9bf2497af54ae24ba34add858f4f68f6a4d67c003804
MD5 5174306069b2b7b47c2259c54c74f905
BLAKE2b-256 ddfcee23bedc01d857bdbb1f3c4c0ab1532d1c5b19457af8c6162c213fc0ad22

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c05ce2c5cc88ec3d4ab346dce10a62877198c1cd9f10afa8217c41a2e5dc792
MD5 18488c23a5d7694f85ec121cb96b86df
BLAKE2b-256 516a16f314d11bdb7d6022a4d2df4ea17c2f82ebadda23a04a514c3ebea4e51e

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e198a08b652c4d2013ab54f15d9f51c11b3c4582533c586d36e251f5151e16b0
MD5 c2ea6f56c55c58aec51468f1715483b8
BLAKE2b-256 a071f0d8098c93be8dc414fb6edc1299906fcce15c6b6c83e3b804c50061dd53

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4df2952c69564293f54f4b6105f550c3f28850d32a7f6462fa5390e8ff79fc17
MD5 275ff12f9046809745e3b1095b6d92e2
BLAKE2b-256 005c68e53ff5c507fb22b24e315b5a6c6c3b310e77448530b4bae18a6eb19966

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 ee216e15b6dc1379fe4f60c0ae2fe55236e93ebf71c42fb4d8b2a617625af9f7
MD5 d81d83162401edbbc1abf822af3cd786
BLAKE2b-256 fd532954f6e8cf42fe11459c999661cd1b3c4bd4bfac1b7c147e9c0aa51384e2

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 74b452234bd7ff021a574b27dd1a3beb40921f70efb6c7ce72888ae22f07b0b4
MD5 2b08c4cfb659c2f1a2974b7512e365a5
BLAKE2b-256 c7aa49c06344bfb295c24c247aa985d8ba794f4a724d9214c14467adafacdaf2

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3a444df0e5c106bc38cc5756f4e3191bc10ff5829edd72e20157c70ed4990128
MD5 a0e616e5bf692386013e0441974abece
BLAKE2b-256 59fccea714604b90219dbacce7abb5e0a16d07acb8cba5f821b449f0ffb23cb6

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c0b714f8e60b20fa7a3482e96d53efc7d8b95d8749ebf5840aec28b60c278ca1
MD5 b787840234b1c82c4ed987b4811613a6
BLAKE2b-256 82a82267f2c7038ce3290d36b3fc8a4aeb3a3cb7777735f679bdc3acdf825bc1

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp310-cp310-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 27f0ea65f8e6dc1049ab58aa849fe1b0989a1b2973e59afdf6a7493ca1d85aef
MD5 331e4e0d8b99e440dfae31f66fceaf9b
BLAKE2b-256 c2ec1e10b07a3d54c0570288813395f2bd7fffed22081c1cdd5d2f83289d3071

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp310-cp310-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 5be82424fa15f4888c168c6b947fcfa46b557e71e151084d46cac01f08790282
MD5 6f22385128d8558a17f770f91d57b218
BLAKE2b-256 dbae15328a8be95a51ec15b66340f105fb7940ffb822590be261070ca9ceb1eb

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5d7948d60f92fcdec9da290509b3a9cea12c6830652425483118326a5edec31d
MD5 480d6c6e33049ca9963e7300747971d8
BLAKE2b-256 c0e2238e014683e94f68ed0a1ff9ddfbb5828025d6030c89f2a06b659359259c

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d63abd52ec2355825bae9a9df0d4c442c6ff3e47e91762931ed9d597e1b81862
MD5 87b23cbda53ef0563ffdf1e209f60f1d
BLAKE2b-256 110edcb9e8831d1bb7c0e3051ffce71089e2b587691dc207a925d37a04229cb0

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 515d0ec284fe501f307febdbb0187acd9e20eaec594f3ac861f266143f7790c4
MD5 08b31b4884b5a8a095569624e86df9d2
BLAKE2b-256 6ab08cef34731ed77e7eb7b3e695be290c7b68096fe1370e762c5f8581b78e37

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1513a37d9b2d0136476c5556607ea1c09064cf8bb59cd283e09dd43f20cab7b9
MD5 13e608da87b1094f76bb9e206eb17886
BLAKE2b-256 d4875a3a99f12f1c3ae09f88da0f1de663a4e97a305fb51958b2ebe566b4abd5

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b5bed9613e512b45434aa24a0b593ff377c839b5b7ea81f6c3b95e170ddf3a03
MD5 18dc8ababcef1c90af5b1ab85623f430
BLAKE2b-256 6501d6158ed6035608040874b6a8b44782b47ac16c7990a3db429ef770b59421

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 807ffbb980de247a5e12d76893a6fd66d871f39c3335047155e82490e48263e2
MD5 254acf0bf59ddd5a5c5e83b35e9f8c89
BLAKE2b-256 b7d7da7f5655ae51cd1862dacb2ff37e4ba2b5bea187c6a64b3cbb4af7db61be

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b9727bdbc63c6768e68eb983cc61b3c30c26f28104a14f64af9869dcc1861ef7
MD5 0d046883369b4b6aa97146a1356cd0dd
BLAKE2b-256 0f93f134b1680b9cb3f7b722ce0a7cf2d683fc0fd033429b3ffde84265f37d0b

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85e400e3797ad74edfe30d76a143feec0ed24653ff67b9e459dd98601f243486
MD5 c6f629bbf4121fb155c7b6c2bd3f9fe0
BLAKE2b-256 1827ae600628b6dc1dac0fb93b864d05155e8bf25a8123964fa1d665a9e5eca5

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3b4c1c829fc5c98e7847ea2fcd07111886899b282a2fdb7b7b9d70d87457cbd5
MD5 6a254f5878b2adbade4eaff4fc951603
BLAKE2b-256 5c7dfdbadad79ed2282865fc4ee09c61f0d79905e15c666479940eaf2ac36a8a

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 cf2a348b272385ebb2d75c43c3948b653f9156ee4586146e6842581bdbacffaa
MD5 95e4ed10772d92204e374471ffe40fbf
BLAKE2b-256 b52a9f0aff48cc42c22226aeedd0d620657dd3e9c0d87d49c4209017b3ad4851

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp39-cp39-win_arm64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 30ea6053ca7facf4d50e1afbb5de65b896c88fe6d0dac3a9ea1e8515f251cf6b
MD5 040b63391dd9f138a5b0af0176bb88ba
BLAKE2b-256 6d9948a980b3479fdcba072e3deafce7635c05420bb76db7d768360d8e311b65

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e8923e56ef7c33d9f212d7c08a83ec33a0fc2ff2b91e260778abeb312adc3107
MD5 e5bd073f11ed1ae25147630c5866baa0
BLAKE2b-256 6a8be775c564e41136ccb7ef007029174582f2f854367dd34f903e84bff8d61a

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp39-cp39-win32.whl.

File metadata

  • Download URL: guppy3-3.1.4.post1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 338.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for guppy3-3.1.4.post1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8df274703deb8ad8632d7660e97b7ac80927df29762bce4e5d6812c468f46cde
MD5 e434e94920ebe90902b5d868e22e79a8
BLAKE2b-256 b9c13572ab4b286e54d4120dcf8b0c5e50690b54fd4a50762f27a42228cc7dea

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8576a4e40a2528e7f3dec24be71a5ef2b250466013939fc3a29c89553668bad2
MD5 826ed037edbcacadd388d594b9cf14b1
BLAKE2b-256 fcfeb0145d8b492521ed900432bada57e1a7c850fa21e1919e46fa8d658c2a6d

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp39-cp39-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 53a069bc8e300ea6b141364f20027b00227dc839c9682ca40a1a4e7438598d06
MD5 932f09f81476bf0c6a6154c7c02c477b
BLAKE2b-256 1fa6f6bc6a3c559ee96e3042ec6c8c149425f9847e2eb91b51b7eccfa3ecf1f1

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp39-cp39-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 5ba343706d7aff096f2badd26201dd1855e3134c1abec57da2c1d5f26c45cf69
MD5 3652e04315a35b7777c9c2824f786272
BLAKE2b-256 242b7294df919b102d58cc2cb2fca21ec6ad6143e3a91e020067e70d8d3d9526

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 dd5949c890c954b946469ac8d8c9393a9b26df3555508c66b57a994a12f0a949
MD5 75b77be49bd5e82441621e2e4a2053dc
BLAKE2b-256 1d5fe78a70111252cdcd459c3758e95a8bcf34652bbe3b0fba89113bb2360918

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f7ea0c9bf0791925b236aea2882b1ca9d8aa56bf5e9cf2408567cceec3a88587
MD5 23d92c35af8d7449b10540f8f8a9088b
BLAKE2b-256 92a7636f54b684271ad0935a31d3aced691a94bb539335b4f7c3a13af36eadb0

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 801cbd0d6a45ba8cacb6e4aa68c5f020a3588461f29d971c19f3cb5e5da239d7
MD5 fafd70f23618124dfb4e1e4756264a52
BLAKE2b-256 d70f89c14ab062fc64555735f9f8f408ba9893ee48ddfcbb32973f33afb929be

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 585cd10e9701fe8d7255a24c36c39fad8b184a5fe26bd10c9ed53c370c88a2ab
MD5 adfaf858b7c8d51a87f27b20e5fedeca
BLAKE2b-256 c02cd7c1fab161effffc970ac0f303e8b04cfd3bb2af35255962ac9b3d8a936d

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1dcc9f902241be2b49ef137ea537e229fa328108a2decc6e5ace8a535fc2a9d4
MD5 192e41beaa0f2302c2ae1982f5c319cd
BLAKE2b-256 dcdeecda8895eeb71b633f69c40e4148305191bfa0c64e4f67cd1266498aa102

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a6d47d6a5807abde37edc917e31713ca535177f28c986162749ba85d53baac40
MD5 ccbd192d87cdb770c2a5fadb031d4590
BLAKE2b-256 47bbb029a0a4c993eda2a37bf400d7774e830cdf51b6034798f225fb039f9a36

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 82595c561959002a5c6441df56c92eee6677f9d946f94b22ef9f63a9a11b5333
MD5 d8edf271488fc49620fcc981b1753ad6
BLAKE2b-256 476c1387491fb0d35cadbd1ff7b9fca9f2807a314276a52002a34d3ef64ecdd3

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85e6766a0c652b1c5ca5dcfa08fc935db5d4b632651c45084750ce317a4f27ba
MD5 0f283c635a6b0ce424f19b567ebe5d7d
BLAKE2b-256 f910878df22777a8d79faf4e40b1c7b9b0b301cb26cb15c12abbda53e5c2e248

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 78b51dff6e898f67422b1265ce08b3646962ed10dc7f1f808da58250a1548d88
MD5 cb76d0ef08b1dd8b46b2412a64a8f1e6
BLAKE2b-256 1552cb7424c8137f0be2d97d7c431f318e3cae1b98b62db6734ee0a3eabf32f4

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 07e83fafd29e710d62e5955b72ee3358631b6dc43fa5258c2b72089a1f25f38c
MD5 1e9337a2ea24fba768aa127c3a2b1a2e
BLAKE2b-256 279b49baea521c0ba2b93b6f05109943010df9682737881932e12425d16b1d3f

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c57997e046e2ea191411968f58b549d69d687987d3d4d7d42f6e972641c3545f
MD5 2b4fdee0355bfb289553d7a18b04e8dd
BLAKE2b-256 da153c6a998d396bd594f1629acbded1706554e4966f2f5a9b262f8ddfe0110b

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp38-cp38-win32.whl.

File metadata

  • Download URL: guppy3-3.1.4.post1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 339.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for guppy3-3.1.4.post1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 4a062aeb5987374b4fcde23cf8d4659e6cbc00944cfc013bba5a0180c74364c9
MD5 9934b564715818af241a9e7953044764
BLAKE2b-256 c93a9c76388cb356916557b6f7aed7ae104b4900605e77a2d154fb0c0535e435

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 80d3b4002f202a989175883c443c403ef27bb9cafb261fc502468fc668426b02
MD5 38a3741078cd14b3c1608fc30257ce00
BLAKE2b-256 939ddbee088eb4090ebd5cd70c46579d41f5fe1ab1ae318768363a5bec230be2

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp38-cp38-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 048e3486ef49a03c03631decd6983b1d6aad5d1d58ad1f21c43e4f71081e4d1f
MD5 ac8aa184cb31790c7fe75962bd14518f
BLAKE2b-256 9e699873cff11b5ee181bb2783ee55aee0504a4c740b9b30b280a9d368ff9ddc

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp38-cp38-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 35ab90260b5d73a1fbd074f1c35c8ceb6032c21ff352629affe807beba5c857e
MD5 92982a79130c4f2c8b7d4d4fb8e7696c
BLAKE2b-256 8b8392d6c43829bb702babe0e0a8fd87392659c3f2951d790e580f0cba145a79

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 41f6183533990da45b278638a542eef8fbe53d277edd48fafd1c1bc1257ebb15
MD5 956c93d4b6ed8751e93e5bd64f42b5a3
BLAKE2b-256 1b5cddc3b9a66ecff13231570ca2b3390b90f05141b4571da826b6b64026a2ce

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a03a4c409997a71fb1fed7c384fda932fc90b6cd7fdaf5222428f6cc4238c236
MD5 77e775f0ccaf29155268f5dcd647d808
BLAKE2b-256 c8c2a8cdb017687a8780ecfafa8b36bedff361a2f418fa876e85f9470969cba3

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca6db9427792c2ccb9a5c3e4ef4e64e10269b74a796953aa95d1f8d51e7aa605
MD5 25d429375b87782a8b78479365ef71ef
BLAKE2b-256 09c3fa1c1cd74ee582dd1e4fb905f9d59f0ebdd281859f430bcd8eabfd08e515

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 243306e963af0a635dfa0db74ac72718fcf5dd7b12470c6a64d7c60a38c6f83d
MD5 fa71003121ae34f297c0e6b03ffa5b4e
BLAKE2b-256 2b3431423cf8b5a8374e50df07c2bda97f9dc0b2372c40d6d419a621678893d2

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b8ece18faa5f90ed3372bb60cd419bbe50f84c614c89d0d2ec4c6e044de02f5a
MD5 c9c776472924c9587a7d5f4a7e963ec2
BLAKE2b-256 b8fd75857f53928ab2c5e46da6f9b966be5a8ca07ae90310eaaba43ca52b1564

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b54a9e5b8e1c811817855e4f2b42c31dadcf2dded8813b011df58732a94ea6cf
MD5 35039aed0dd873a414381e7c128818e7
BLAKE2b-256 43fb66481f093e7d610ee611c23ec7e65fb30f1626c212872b58eab8f46bfd27

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8250a688b2139a074aeadb457d78771b4a2bfdb49370eca11fd1fc7639d84b33
MD5 93749c19b2594dcd7228e959c89980b5
BLAKE2b-256 d826d38dea4f30b0bfd87e52295f67902f3c6ab4ef166b19234b03e00b6fb587

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 52f6bcfee990c175571252aeeef5e91c1cdd1451ce23fb34f1d4766adb69c152
MD5 91dbd35db4f6f0266879b9ed0f3a9d87
BLAKE2b-256 8968c6c7e9d1d0b5965e54a91e17bed70e0600c365e45f24a3349db3533eb546

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 de35189ab21f975eccdd73621a35e993a2d6adf13ccf52427180a674cfcb4c18
MD5 2a248eb6ffb5ba9dd3058b424c80be65
BLAKE2b-256 5ff99df5d79c82382a1062e319b71a6163f4148f706136a86ce7d027734c9454

See more details on using hashes here.

File details

Details for the file guppy3-3.1.4.post1-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for guppy3-3.1.4.post1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 277df2c20fc10f21ef46664a074e4de109946b5e7b8e1c324132d1aa83810d85
MD5 2799cad38ff5b6997d9652e82c1d2853
BLAKE2b-256 cd0f1dea510a136e3c55d96b3638e06aeeb88ce1b62c8210039f0fb194052569

See more details on using hashes here.

Supported by

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