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.**


📦 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.0b1-cp314-cp314t-win_amd64.whl (712.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

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

hardview-3.1.0b1-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.0b1-cp314-cp314-win_amd64.whl (701.1 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

hardview-3.1.0b1-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.0b1-cp314-cp314-manylinux_2_26_i686.manylinux_2_28_i686.whl (2.8 MB view details)

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

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

hardview-3.1.0b1-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.0b1-cp313-cp313-manylinux_2_26_i686.manylinux_2_28_i686.whl (2.8 MB view details)

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

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

hardview-3.1.0b1-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.0b1-cp312-cp312-manylinux_2_26_i686.manylinux_2_28_i686.whl (2.8 MB view details)

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

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

hardview-3.1.0b1-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.0b1-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.0b1-cp310-cp310-win_amd64.whl (684.5 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

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

hardview-3.1.0b1-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.0b1-cp39-cp39-win_amd64.whl (688.8 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

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

hardview-3.1.0b1-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.0b1-cp38-cp38-win_amd64.whl (684.4 kB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

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

hardview-3.1.0b1-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.0b1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: hardview-3.1.0b1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 712.3 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.0b1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 e989e23be72f402e5d2e45c45b3cb774eabdce19e8ab2515794917ff48e58f9c
MD5 06a38e2d3e5b698e56882a1164421397
BLAKE2b-256 e71481e5ba3fb7916a8f3a440dae1d0d881e238351b3892f8657e3839fb4e855

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hardview-3.1.0b1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 658.5 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.0b1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 7e77b36dc5afc5b1c970711a410df644e1f66831bfc5a138915a7d98facd48d6
MD5 487d58954a89e395f3bba64941aa2d9f
BLAKE2b-256 6668f4c0d20a2d1e9c88a3ede4b39dde53c24553da02a1c99d898e1677d511c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hardview-3.1.0b1-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bf6fca922ace6a29c133abeb9eda14e9cd7918c4120b3318e11c8540810b8866
MD5 e673fbab45357a7bf2706ff8b88b5350
BLAKE2b-256 e3f989d1365af6656700b21f7f7fd9835f9c70ffcd76336ebd0299c69dcab93f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hardview-3.1.0b1-cp314-cp314t-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 787e3f2a3afadc655dfe3d72ef1e54e7ee91a7f971f09c052c27274a36f491b0
MD5 c4557717d110e0a80864ec950b8838e6
BLAKE2b-256 9385e2f2135f5bd930b59288a117660fafa3d8bc29a00df619f408ac5215d43f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hardview-3.1.0b1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 701.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.0b1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6e9491ae05c0c4952ece5829e55e81ecdf65a654a840eaa2f66b9188b2c4042d
MD5 e32c07b2eb8cb9f681ee0c2aa8800cef
BLAKE2b-256 7d6430206deb8096c4e1690739999b632ee33b86dc7050089dc3965f74271c58

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hardview-3.1.0b1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 649.9 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.0b1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b1449bf991cb5b4f336df1102b2329f190de0150fe2a4884a07bd1d5e49206bb
MD5 96c9ed8d6f390b872a412bb8e6d15047
BLAKE2b-256 59b3a4c7daca8c5232a623b00d3cd94a0e2bd602074f79a87464eda3bdb3038d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hardview-3.1.0b1-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7675e68ae6147f20ae2577b6b506c3ae9c8fa76bf6ce5d36414b8ad24b1ffe28
MD5 6d4529f5d4cb596343f68784197651ab
BLAKE2b-256 39a79ce6f61e392031a1aa6c9b1e2a17f29a762d4709ff7bcae51d18ff4a33bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hardview-3.1.0b1-cp314-cp314-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 9d5d38cb4751c2f9172a9bab96087b0c3c82c207355d210d52a920891ffcde31
MD5 bb922170d38e5554919e47c95d0c1d23
BLAKE2b-256 f6b2004831e68e46f9648a0d4d73e70819a04adb85b666f2f3f716e694119b6d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hardview-3.1.0b1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 685.4 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.0b1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f4eb1482cf5516803d5ab6bc01ab4cf4aff537a7231afbc9997230f10672d39b
MD5 8df14097f65ad8d4d3a814ed9c96d04b
BLAKE2b-256 1d0db43c9dacfe0779ad51d25488a37d0ef615f0924ed0ee5c0715c88e6bc228

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hardview-3.1.0b1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 637.2 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.0b1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 421ad716defbf479b314ef1fad2d966e507bc4acd2988c2b253a4d060d2068dd
MD5 505ee736e5d529e44bd13a3834b93ffe
BLAKE2b-256 6727038db15457221d63aeb99dad3a604800f75b42f044fa10f96df0dec20a17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hardview-3.1.0b1-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b562f48e2755cf172c1b3912bd2e97eef41362480dfc2903085e16d7d8c6c83a
MD5 e26517a74d5320ba98108419ac965b82
BLAKE2b-256 7e2c90d14bddfbdf9496d8e86727ebe7b6ec9287e3704a15d5db6bee403d5dad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hardview-3.1.0b1-cp313-cp313-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 5beb2205398622f94de39322e92baf3618f1690fd0bc94d5a8d7dbf28df79394
MD5 fe278a6d88873073073ac50d3b92a534
BLAKE2b-256 46e3ed5cfce626be89c09e7b352220283bbd9b2aebd2388857c1a3283cddfa55

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hardview-3.1.0b1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 685.4 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.0b1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b3bd2ae9da80f0d32166672b74f0d85c13affcfc5d655ec2472be3ff80bda12c
MD5 a8c7947940dcff7422a7fcc6f457b647
BLAKE2b-256 fee6057a8f59696936fdc85555a679790bff715d366941fb984cbc25182b8f35

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hardview-3.1.0b1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 637.2 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.0b1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5702c7d8e9f0e94c49481090d0e866de28da5edfd94c14f12c9c331c226d6bb7
MD5 b4554170e84f40298080044c977fa162
BLAKE2b-256 7505971f9e92c5c7258afe2c2c481b19d279081fe0f47b93add1b7a03cc90741

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hardview-3.1.0b1-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f4a13d079bf3e60e1f654e75247f1d03433d9ffe2f6c7ed40634ce86921b14a5
MD5 bfd39ed0a208fc7f3157c5af57b0d95e
BLAKE2b-256 c061ff1ddcf81d0d83cee5a2ba57ece0270be234642be63d10bbd4ff6ce42cde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hardview-3.1.0b1-cp312-cp312-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 7b3f6c8df3baead85606d262cc81e7f6c0aea478558900959670791610d657a6
MD5 f7afceb91d32d24f1c5375b5f90c6ed2
BLAKE2b-256 9fc7986929436df595d05cf050bb831faefff23d72fd42c764e05bf3c575b17b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hardview-3.1.0b1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 685.5 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.0b1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6ac124910538ccd5235a3c894731bb9d07a264f33bd06d021de9163c3d4f4545
MD5 1ac1a2837775f248f87f440daa5eccc5
BLAKE2b-256 4a3ee96fe8ea2b5c441f638f54017a59a2366064d085b4c0aadab476a06b0109

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hardview-3.1.0b1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 636.6 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.0b1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 89cd3c236e407638e873ff221d45c15dfad8e9f10e1185356224638c7bab6e71
MD5 1f1cc91d5cd57dec51c411ff6c50c985
BLAKE2b-256 006202ba11212b94757b9c49beb4d127b595b4fa0b4601e1eb96bdd8062974ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hardview-3.1.0b1-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 00a2aaa44fee6d280056b2316bf3f85919b0f92dd56a285c34c2d1f4771ac33e
MD5 4c04c32f3447ec12972599a9d874ace5
BLAKE2b-256 374b8a17036a4503b7e1ddc2a4c2f005bba5bf8d10f2352805c7e0c6784ecc8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hardview-3.1.0b1-cp311-cp311-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 96eb3750d583b6139beeb4f6f72f7a6e4d38fc5f853e61329097a990c0826050
MD5 8d3d927f58b6149c2d4d11ff965e498d
BLAKE2b-256 51304e51a3c180c6760772b8251c7b65330319ea8d15d43667a51663b04b2ecc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hardview-3.1.0b1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 684.5 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.0b1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2f2840f392596b25ad7fde3c09ae5f9ff404f127f4e62f8380e487d2ae0c9362
MD5 82d2843827dcff94a342a6fd5cf7afea
BLAKE2b-256 965a4d3a0cc6e286d640f55be8b3e3f39f5116480919fa9ea496d7bda2aea1f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hardview-3.1.0b1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 635.9 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.0b1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bb0c789155a877149acdc7238e397cf46ad2730dde6a3f8f25e12c0d46267fbe
MD5 cb92846a4f50c64e0678b249d1fe931d
BLAKE2b-256 365bdcbcae2c9433e250f05e02e21e9668342c1227a205e33992ebf9e8f33c9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hardview-3.1.0b1-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0e427a6da1763267f9cb1e472dabe1214bbee7e2b55f002ff182616da27038cf
MD5 64c636dd2aa8ca225e4724ed15ca6b0e
BLAKE2b-256 c6e5247703e606f51fe781f9d399af355d76dea3234ea1e309893f951ae7b6ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hardview-3.1.0b1-cp310-cp310-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 0c5ea2de1d2fcc8e7d023e18f9415d3cb51bdfb54a06e6998b08617765c97a71
MD5 2cc052fdcbd5cd1204812c52fbccc25f
BLAKE2b-256 8ea010c75fc356d610c7460db8c58fdd252410ef59e27d43dd664cd48b9e28d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hardview-3.1.0b1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 688.8 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.0b1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 33292c9121318d85718978c02cba69e24ada2849f83ef71a942382ebabff6e6f
MD5 c9b5a350df66d251654c4dd05b3dec66
BLAKE2b-256 5af58bf1e9c450637de40b3b3c531e3ae697b597eb506025a665d2b96af623d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hardview-3.1.0b1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 636.0 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.0b1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2a91d525a6216c91295dcb10bda2b83cc50fc5e6e48f6e049831d1aeb9fe01da
MD5 0940f834ce3af246d3887041b4c8e765
BLAKE2b-256 623df52490afa91828c74503fe69182dcee3a66a720433713d493367c6086189

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hardview-3.1.0b1-cp39-cp39-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0dbc60530b1d5e97be3dd22e1156bc03cf866c76b3d7078881d563d9b613afcf
MD5 6d6d434d9c554ae3d9996b32b47b1b9b
BLAKE2b-256 ee55901d7bf86294ecff28a0250064d51f5475a100cb7383612e938b0fa8a956

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hardview-3.1.0b1-cp39-cp39-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 ea9f4d47f2bdcdf2abd4e5ca95a07370214229d624e6ba443acc6e2945875faa
MD5 80a41e1abeda148be7d5cf5baed56252
BLAKE2b-256 a5987ba8a8a65e74cb06085d1337c029b6e193da1a5ab71c2a7486ab7b8c9d27

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hardview-3.1.0b1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 684.4 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.0b1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ea3341cccb19f9c7fc30cb3f86837c2866ea75e7c72d2b4be32a018bcd97f464
MD5 9f62bb93bca7d560c9eb444467cd78d6
BLAKE2b-256 026311a2a41ec428df9d0932df38625b4bdd4b43d2edfc31379ebbdb5365589c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hardview-3.1.0b1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 635.9 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.0b1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 60f202e6a5464209e91e4d4a11b883e31fcd2cc330aac8ec4bbe85835069cd37
MD5 0a6b1b79aaad3f1230d1d48dcc009d95
BLAKE2b-256 f45ae076ec002487c74554796d5e9add700b10ca1c010b6253253c5bee9ce7c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hardview-3.1.0b1-cp38-cp38-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 101c430a1d10b17bcf26a50e460ab092a7f08bc5162c46458680735f9e00039e
MD5 680d0fea2ddc7a98bec27d5c7052dbd8
BLAKE2b-256 bfbbf64d5ab8dc4a0a8ec16127c62d81a0f240b458aa4e3a0ae50f0eb140bef4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hardview-3.1.0b1-cp38-cp38-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 84b7c75f932a342a7da50b11c8db543dd8adb2424edc89b4a26da458212232db
MD5 8f8246ca858ca3300d3c31efcda6b8d4
BLAKE2b-256 9db09693a094bfe16b825a078749b9f050a91ba767f808871e3732d0d1ff0ac9

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