Skip to main content

A comprehensive Python library for collecting hardware information and real-time performance monitoring.

This project has been archived.

The maintainers of this project have marked this project as archived. No new releases are expected.

Project description

HardView 3.1.0 - Advanced Hardware & Real-time Monitoring

A comprehensive Python library for querying low-level hardware information and monitoring system performance in real-time on Windows and Linux systems.


New Features in 3.1.0

  • Added LiveView Extension
    A new, high-performance C++ extension for real-time, class-based monitoring of system resources.
    This is the new recommended way for live monitoring, replacing the older monitor_* functions.

🌡 Temperature Monitoring Support

HardView 3.1.0 now includes cross-platform temperature monitoring:

  • Windows: Implemented via LibreHardwareMonitor through a C++/CLI wrapper, seamlessly exposed to Python.
  • Linux: Implemented using lm-sensors for accurate thermal readings.

The LibreHardwareMonitorLib.dll required for Windows temperature monitoring is bundled within the HardView wheel and is automatically copied to the Python installation directory during the library’s initial setup.
This means you do not need to manually download or place it alongside your script — unless you encounter specific import or loading issues.

The included LibreHardwareMonitorLib.dll is the original, unmodified build of LibreHardwareMonitor, licensed under MPL-2.0, with full source code available in their official repository. The included libsensors library is the original, unmodified build of lm-sensors, licensed under LGPL-2.1-or-later, with full source code available in their official repository. The included HidSharp.dll library is the original, unmodified build of HidSharp, licensed under Apache License 2.0, with full source code available in their official repository. This project does not depend on it directly, but it is a dependency of LibreHardwareMonitorLib.


📦 LiveView Extension API

The LiveView extension provides a simple, object-oriented interface for live resource monitoring.

Usage Example:

from HardView import LiveView

# Create a CPU monitoring object
cpu_monitor = LiveView.CPU()
cpu_usage_percent = cpu_monitor.get_usage(interval_ms=1000)
print(f"CPU Usage: {cpu_usage_percent:.2f}%")

# Create a RAM monitoring object
ram_monitor = LiveView.RAM()
ram_usage_percent = ram_monitor.get_usage()
print(f"RAM Usage: {ram_usage_percent:.2f}%")

Available Classes and Methods:

LiveView.CPU()

  • Description: Creates a monitor for CPU usage.
  • Methods:
    • get_usage(interval_ms): Returns the average CPU usage over a specified interval in milliseconds.
  • Platform Support: [Cross-platform: Windows, Linux]

LiveView.RAM()

  • Description: Creates a monitor for RAM usage.
  • Methods:
    • get_usage(): Returns the current RAM usage percentage.
  • Platform Support: [Cross-platform: Windows, Linux]

LiveView.Disk()

  • Description: Creates a monitor for physical disk activity (busy time).
  • Methods:
    • get_usage(interval): Returns the disk busy percentage over a specified interval in milliseconds.
  • Platform Support: [Windows-only]

LiveView.GPU()

  • Description: Creates a monitor for GPU engine usage.
  • Methods:
    • get_usage(interval_ms): Returns the GPU usage percentage over a specified interval. The most suitable engine (e.g., 3D, Total) is selected automatically.
  • Platform Support: [Windows-only]

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

hardview-3.1.0-cp314-cp314t-win_amd64.whl (836.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

hardview-3.1.0-cp314-cp314t-win32.whl (782.2 kB view details)

Uploaded CPython 3.14tWindows x86

hardview-3.1.0-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

hardview-3.1.0-cp314-cp314t-manylinux_2_26_i686.manylinux_2_28_i686.whl (2.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.26+ i686manylinux: glibc 2.28+ i686

hardview-3.1.0-cp314-cp314-win_amd64.whl (824.1 kB view details)

Uploaded CPython 3.14Windows x86-64

hardview-3.1.0-cp314-cp314-win32.whl (772.6 kB view details)

Uploaded CPython 3.14Windows x86

hardview-3.1.0-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.9 MB view details)

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

hardview-3.1.0-cp314-cp314-manylinux_2_26_i686.manylinux_2_28_i686.whl (2.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ i686manylinux: glibc 2.28+ i686

hardview-3.1.0-cp313-cp313-win_amd64.whl (806.0 kB view details)

Uploaded CPython 3.13Windows x86-64

hardview-3.1.0-cp313-cp313-win32.whl (757.5 kB view details)

Uploaded CPython 3.13Windows x86

hardview-3.1.0-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.9 MB view details)

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

hardview-3.1.0-cp313-cp313-manylinux_2_26_i686.manylinux_2_28_i686.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ i686manylinux: glibc 2.28+ i686

hardview-3.1.0-cp312-cp312-win_amd64.whl (805.9 kB view details)

Uploaded CPython 3.12Windows x86-64

hardview-3.1.0-cp312-cp312-win32.whl (757.6 kB view details)

Uploaded CPython 3.12Windows x86

hardview-3.1.0-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.9 MB view details)

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

hardview-3.1.0-cp312-cp312-manylinux_2_26_i686.manylinux_2_28_i686.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ i686manylinux: glibc 2.28+ i686

hardview-3.1.0-cp311-cp311-win_amd64.whl (806.1 kB view details)

Uploaded CPython 3.11Windows x86-64

hardview-3.1.0-cp311-cp311-win32.whl (756.9 kB view details)

Uploaded CPython 3.11Windows x86

hardview-3.1.0-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.9 MB view details)

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

hardview-3.1.0-cp311-cp311-manylinux_2_26_i686.manylinux_2_28_i686.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ i686manylinux: glibc 2.28+ i686

hardview-3.1.0-cp310-cp310-win_amd64.whl (805.1 kB view details)

Uploaded CPython 3.10Windows x86-64

hardview-3.1.0-cp310-cp310-win32.whl (756.3 kB view details)

Uploaded CPython 3.10Windows x86

hardview-3.1.0-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.9 MB view details)

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

hardview-3.1.0-cp310-cp310-manylinux_2_26_i686.manylinux_2_28_i686.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ i686manylinux: glibc 2.28+ i686

hardview-3.1.0-cp39-cp39-win_amd64.whl (809.3 kB view details)

Uploaded CPython 3.9Windows x86-64

hardview-3.1.0-cp39-cp39-win32.whl (756.2 kB view details)

Uploaded CPython 3.9Windows x86

hardview-3.1.0-cp39-cp39-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

hardview-3.1.0-cp39-cp39-manylinux_2_26_i686.manylinux_2_28_i686.whl (2.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.26+ i686manylinux: glibc 2.28+ i686

hardview-3.1.0-cp38-cp38-win_amd64.whl (804.9 kB view details)

Uploaded CPython 3.8Windows x86-64

hardview-3.1.0-cp38-cp38-win32.whl (756.2 kB view details)

Uploaded CPython 3.8Windows x86

hardview-3.1.0-cp38-cp38-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

hardview-3.1.0-cp38-cp38-manylinux_2_26_i686.manylinux_2_28_i686.whl (2.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.26+ i686manylinux: glibc 2.28+ i686

File details

Details for the file hardview-3.1.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: hardview-3.1.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 836.4 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for hardview-3.1.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 5d3e5de7214e3bcc86e03058d799f1d479314dad19ab91da9ed7f6674b130bc3
MD5 6072e1fb2cee9faa5ac4969345100f45
BLAKE2b-256 e7c1cd8fc640a09fda94b8d8ef44dd669ac81abd5868622682d3ded04ef9416d

See more details on using hashes here.

File details

Details for the file hardview-3.1.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: hardview-3.1.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 782.2 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for hardview-3.1.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 50952c9055115553ddab3eba268fbfeb249cf8d1a02be28047369ea6278ed3c8
MD5 eff99c5971a04ec4ae40a09ba87d4220
BLAKE2b-256 346b9fbfc9a66361470ced314b52ad22f7fb730c5bbf2ddc888bb2c54f827daa

See more details on using hashes here.

File details

Details for the file hardview-3.1.0-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hardview-3.1.0-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 659babd9d73a26970342df9e448101b83ddb501c188adfdff7f58587cbc2cf2b
MD5 6ba59da8f84178b0805364bfc7a75087
BLAKE2b-256 b5bbc33870272e12ab8b2ae1ef80843bc88425c93c827a10c36677dbe827911c

See more details on using hashes here.

File details

Details for the file hardview-3.1.0-cp314-cp314t-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for hardview-3.1.0-cp314-cp314t-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 1c89d94e25b635898c0088ae2f3b45d81c5d5322b68d1a4664e71de6a596d045
MD5 45a7669765dc8f34a599efcc35b055ff
BLAKE2b-256 c9a986f83339353d5f840efcf391c53e9f9e86d456723dc9329c32295d17e8ab

See more details on using hashes here.

File details

Details for the file hardview-3.1.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: hardview-3.1.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 824.1 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for hardview-3.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 536dbd30131ebef112a225fc69ad83ac23dea60b72082b053fde216cf3027ab0
MD5 a968fc106d097405848d50a7b4979152
BLAKE2b-256 42d2274b97d7c959a0f5a355f89cd9625cf6d4cb93f19d0b964281baa5dee89d

See more details on using hashes here.

File details

Details for the file hardview-3.1.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: hardview-3.1.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 772.6 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for hardview-3.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 ea78d87e463e55d942ef59887d2b03b43b018ae45950533728b3566e51934934
MD5 fead058970bd11436b93b165674243c0
BLAKE2b-256 814e1f80485f8c009d3ba2448c26e02d58d0fabbaee6fa4792509648c5d72e17

See more details on using hashes here.

File details

Details for the file hardview-3.1.0-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hardview-3.1.0-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f17c539ff3c5059542b53db7d2cdd345bc35ba01531ba3e6f1b331d6587cc438
MD5 9bb96ac2003fe3531a52f9fd4e47f6df
BLAKE2b-256 bf15ecc0454097771bccab8a068903d003eea3538845390dc2103096820246cc

See more details on using hashes here.

File details

Details for the file hardview-3.1.0-cp314-cp314-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for hardview-3.1.0-cp314-cp314-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 27424f1b78ff245837701a0db0e13937ed342bec570ddf2a4d886c5d665aea6a
MD5 73960784b247f2d965c041ad0344c385
BLAKE2b-256 26e77d8f3d098a3b695c410f345bf352011caa122c8740c24148e4bdfe1ce4c6

See more details on using hashes here.

File details

Details for the file hardview-3.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: hardview-3.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 806.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for hardview-3.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d8a590cd78c03e6695675e32e05fcbd78777a4baba8c5a68a3e0ca9b0821df18
MD5 5be89b6f6fa7d8582c2446aac31a85fd
BLAKE2b-256 f5a72a1a3cb9116890e8b66740ae0a6f5e88ef1c7c63f40d7abbb1a8071f0306

See more details on using hashes here.

File details

Details for the file hardview-3.1.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: hardview-3.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 757.5 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for hardview-3.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c45c73d1874527474a4b852ae3c147aa9ef368e64227e75bd403c4b68a9a6295
MD5 5cc0e36e602580b49852398a79537bde
BLAKE2b-256 9e74500e7f64c87b67b72b72dcdf0f02fcc770de9dc33861ac0deecc5a561022

See more details on using hashes here.

File details

Details for the file hardview-3.1.0-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hardview-3.1.0-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5b37fa5a7761c748623d11b5003cde730962ba5d39732e2514873e8aa6dcbfc7
MD5 7fadb50d2a33ee9097ddff22519354c7
BLAKE2b-256 9adf357afa4383800f5a8eb2a948cd6057881b37fd4e2a0bcf8f9bd502442b88

See more details on using hashes here.

File details

Details for the file hardview-3.1.0-cp313-cp313-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for hardview-3.1.0-cp313-cp313-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 b24c7cac57382810063eb501d37cda156d7e16b20afd96c0449c963e768b5f04
MD5 8482b3789fcdd9d501428246314bb491
BLAKE2b-256 c7771247656ea22177b3353ce2c11b73c8c1d85d54887e7d7c594e7548af5faf

See more details on using hashes here.

File details

Details for the file hardview-3.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: hardview-3.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 805.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for hardview-3.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cd5c7e68648c7656ceabf1bacedd232140d1423f1b439f73bd13532562b826f2
MD5 deb061bd83b3251ce543f75d4729963b
BLAKE2b-256 865b3e986703e9d15dce01e3dc81bd428e7d6db742be68a2f39f10b0155d240f

See more details on using hashes here.

File details

Details for the file hardview-3.1.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: hardview-3.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 757.6 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for hardview-3.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8794fa6a8d6a8849f415c375f8c180c100f1891df8bb9333b611c9e44d1fc4a9
MD5 c45877baeefa4ffec99b98fa1fe2f7d6
BLAKE2b-256 0c680c3dacad1afa11213a5a85f54b4a0fbc157c0564a7ad037dd657b7d127d1

See more details on using hashes here.

File details

Details for the file hardview-3.1.0-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hardview-3.1.0-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aeb7ef68a227f4328f3d5afc1e0c7be65b56b37f37c2d57d37c63c200c66f8ed
MD5 efd00a72aae7716c14069b001123dee8
BLAKE2b-256 f7332d6147de54975047bab59610d46d62baa570bcda52a4e9fa8973b8131657

See more details on using hashes here.

File details

Details for the file hardview-3.1.0-cp312-cp312-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for hardview-3.1.0-cp312-cp312-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 10992642b867dccfdd3cc2248a0e6fea3dc5ff69e816f81a484193e9bf06b6e4
MD5 cf88c4b5343c8aebba4f9986a121a8d6
BLAKE2b-256 7854f1baa9070c642fbf9d7e9d76fd186f7333a52565eb9238dae95476e4ddcb

See more details on using hashes here.

File details

Details for the file hardview-3.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: hardview-3.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 806.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for hardview-3.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ddfe5bd920f32cf1029281f50fd439b6439b5dae622a297eca82e866627d896a
MD5 803a1dca9d53e7f1fd62724940f69e72
BLAKE2b-256 27f495152065e8e051564e3c9266ac2ea7133ae62f33ec08f50cad19ecea376b

See more details on using hashes here.

File details

Details for the file hardview-3.1.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: hardview-3.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 756.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for hardview-3.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 07bc02ae7d5596d3b9dc570c182a2be04fbc16431ac636415b47b62d9d435c99
MD5 233b9e6fe808a9f9d1b775d3cc37c73f
BLAKE2b-256 453d4b8feb07c27b053c020c002b00aefe8108e2ec66b832a99eb3afcf864555

See more details on using hashes here.

File details

Details for the file hardview-3.1.0-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hardview-3.1.0-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a7d046697811b885722e2c722b03a269cc6a14ce5a76cf57bd18350807f97657
MD5 f83762e5c18857517e71d705b8c31efb
BLAKE2b-256 6d20271796b3617d9c507238cbf8d2185c02eb76ca9a04c4b45e38f74166df8b

See more details on using hashes here.

File details

Details for the file hardview-3.1.0-cp311-cp311-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for hardview-3.1.0-cp311-cp311-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 0521ffc17e22683199aeb6cc46ebdab07886d80e8bee967149a16c64259a93f7
MD5 94087eaee169b1f52e7c93833f831a46
BLAKE2b-256 9980457e32fe5ed7313062229816ddae3f21b986ff2d1be8224f751727d021b1

See more details on using hashes here.

File details

Details for the file hardview-3.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: hardview-3.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 805.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for hardview-3.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ebde76d0a83c21d9073b16b8bda8a1212410058560eac0c56b2e352f356b56b3
MD5 d700159fd86b96db43e943788aaecbf1
BLAKE2b-256 01a866c7140c0194772d170c7887f4504149d3e24879642d9aba8480523a81f9

See more details on using hashes here.

File details

Details for the file hardview-3.1.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: hardview-3.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 756.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for hardview-3.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6fab79c91cce0d44a3948a52a9399750eaf8d4daba1e5c8cf4a983a40ce3af24
MD5 db2d87520568f2b41168c9f7efb5321e
BLAKE2b-256 e01949d9abc9e28b30d3dbc1edd73caf33283765fa13a5695a137263bc0269f1

See more details on using hashes here.

File details

Details for the file hardview-3.1.0-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hardview-3.1.0-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7fda6b10843aa36c6b4f1fb16332428c867978a4017842ade7bb61fd02e9cd86
MD5 abef7f92f3bae51fde906074d7081f2a
BLAKE2b-256 4f7e20e9d8ad23fae03159311d7421364bee852345833359f27268377358b87e

See more details on using hashes here.

File details

Details for the file hardview-3.1.0-cp310-cp310-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for hardview-3.1.0-cp310-cp310-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 8ee4b1839edc5994f490091e096ecdf127c0b7502931c5853f376895f4b38991
MD5 9ee1c0f5a0018fc2b4f52474be3556ad
BLAKE2b-256 9643e962b4c54b8bf31ff24c680eb1ddd79c7d3e6dd70dbffb70484bcdf175e6

See more details on using hashes here.

File details

Details for the file hardview-3.1.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: hardview-3.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 809.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for hardview-3.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7b95c636c894477d8a4d07cd76928620f82f1c08013eebcb07d4be44fd5ad0a8
MD5 a220b66a8f0c23bc98102c9fadfebd5d
BLAKE2b-256 9f8bb09cae024f9d24290f2082a0452b3a869d4ba45b9a4477e7cb68e899e274

See more details on using hashes here.

File details

Details for the file hardview-3.1.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: hardview-3.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 756.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for hardview-3.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e93aff60ecd0e100aac3775110700fe09c362d821792b575a0eab0174e57b1fe
MD5 24b1404d3647c0236e717cdbb8e0a1cf
BLAKE2b-256 4f64776662b974f21832e29aed1920f121711d68fb6610c040b3df7c149a5117

See more details on using hashes here.

File details

Details for the file hardview-3.1.0-cp39-cp39-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hardview-3.1.0-cp39-cp39-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d7109ae95a866fb3870a5a0a5f0e3d445db29d310777d8e64eb256669eade21b
MD5 da835a73cfd136e9c1f474c147059e8e
BLAKE2b-256 f40d38559e15c5dbe097b2012ad1948746752fc69e7784f2b21fe13c353a2590

See more details on using hashes here.

File details

Details for the file hardview-3.1.0-cp39-cp39-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for hardview-3.1.0-cp39-cp39-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 c326999933dc254ad3ef1d66bb15044a4f61002ff7f54ae1bcd483b140094a71
MD5 bda231f018c8cca950ff0fb8032f65a8
BLAKE2b-256 fb6c955383f589ba4821b9602eefb316e4dda01b8786e8e5482a1ba3d1070553

See more details on using hashes here.

File details

Details for the file hardview-3.1.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: hardview-3.1.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 804.9 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for hardview-3.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b650ae76c9a7a43bde66f528123170c1e93736c5de2e052ef33a0bc10479f85f
MD5 c77c92b92b9561e227c501a292b3bee0
BLAKE2b-256 a3c2f94854707f97871b85d8cef2f6384745bfb5b92de50f899543b01214bb22

See more details on using hashes here.

File details

Details for the file hardview-3.1.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: hardview-3.1.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 756.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for hardview-3.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 f66781394120ea1d1f67a6babe008398ee39e12ca8b70f1ab94355152e41b257
MD5 0b3bf7102dbc8ba2b5f8fc341ea20dd2
BLAKE2b-256 b0ed58f9e8ce9b226b35c7614d18b4fa4ddbe5b7eb121fe430b6fe4282e4bc20

See more details on using hashes here.

File details

Details for the file hardview-3.1.0-cp38-cp38-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hardview-3.1.0-cp38-cp38-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 14a3e806a553207401c9a88aae5d097ed39f67479ab4413d65782646621c6756
MD5 e0126a5f1c08f0c60a23a7a63a5e055a
BLAKE2b-256 2d25716fb90c88f43b2f7c6cc2c9cecf40b37a163ba3913456434184ef9c3a3a

See more details on using hashes here.

File details

Details for the file hardview-3.1.0-cp38-cp38-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for hardview-3.1.0-cp38-cp38-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 7aa711a77e7a1e3e18ec6f28894a18d4d566c8bdaf80d368d129bbfa2fe8f86d
MD5 fee66136810fb21b7cddf96227480a74
BLAKE2b-256 f9d8b5b3458257049f7099e2b7e1b59b0059df01a1f8c0e1134b340e61f6d9f6

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