HardView


NameHardView JSON
Version 3.0.1 PyPI version JSON
download
home_pagehttps://github.com/gafoo173/HardView
SummaryA comprehensive Python library for collecting hardware information and performance monitoring with dual JSON/Python object output support.
upload_time2025-07-12 04:31:16
maintainerNone
docs_urlNone
authorgafoo
requires_python>=3.7
licenseNone
keywords hardware system monitoring performance cpu ram disk network gpu bios windows linux wmi python-objects json dual-output
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
HardView 3.0.0 - Advanced Hardware Information and Performance Monitoring Library

A comprehensive Python library for querying low-level hardware information and monitoring system performance on Windows and Linux systems with enhanced dual output support.

NEW FEATURES IN 3.0.0:
- Dual Output Support: All functions now support both JSON strings and Python objects
- Enhanced GPU Information: Detailed GPU data including driver version, memory size, video processor
- Advanced Network Information: IP address arrays, DNS hostnames, enhanced adapter details
- Improved Linux Support: Better compatibility with Linux systems
- Memory Management: Enhanced memory safety and cleanup
- Performance Monitoring Objects: Real-time monitoring with Python object output

Hardware Information Functions (JSON and Python Objects):
- get_bios_info() / get_bios_info_objects(): BIOS manufacturer, version, release date
- get_system_info() / get_system_info_objects(): System manufacturer, product name, UUID, serial
- get_baseboard_info() / get_baseboard_info_objects(): Motherboard manufacturer, product, serial, version
- get_chassis_info() / get_chassis_info_objects(): Chassis manufacturer, type, serial, version
- get_cpu_info() / get_cpu_info_objects(): CPU name, cores, threads, speed, processor ID
- get_ram_info() / get_ram_info_objects(): Total memory, individual memory modules
- get_disk_info() / get_disk_info_objects(): Disk drives, models, sizes, interfaces
- get_gpu_info() / get_gpu_info_objects(): GPU details, driver version, memory size, video processor
- get_network_info() / get_network_info_objects(): Network adapters, MAC addresses, IP addresses, DNS
- get_smart_info() / get_smart_info_objects(): Advanced disk information (SMART data)
- get_partitions_info() / get_partitions_info_objects(): Advanced storage and partition information

Performance Monitoring Functions (JSON and Python Objects):
- get_cpu_usage() / get_cpu_usage_objects(): Current CPU usage percentage
- get_ram_usage() / get_ram_usage_objects(): Current RAM usage statistics
- get_system_performance() / get_system_performance_objects(): Combined CPU and RAM usage
- monitor_cpu_usage_duration() / monitor_cpu_usage_duration_objects(): Monitor CPU over time period
- monitor_ram_usage_duration() / monitor_ram_usage_duration_objects(): Monitor RAM over time period
- monitor_system_performance_duration() / monitor_system_performance_duration_objects(): Monitor both over time period

Usage Examples:
```python
import HardView

bios_json = HardView.get_bios_info()
cpu_json = HardView.get_cpu_info()

bios_objects = HardView.get_bios_info_objects(0)
cpu_objects = HardView.get_cpu_info_objects(0)

cpu_usage = HardView.get_cpu_usage_objects(0)
ram_usage = HardView.get_ram_usage_objects(0)

cpu_monitoring = HardView.monitor_cpu_usage_duration_objects(10, 500)
```

Cross-platform Support:
- Windows: WMI (Windows Management Instrumentation) queries
- Linux: /proc, /sys filesystem reading and system calls
- Enhanced error handling and memory management
- Platform-specific optimizations

All functions return structured data in both JSON format and native Python objects for maximum flexibility.
    

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/gafoo173/HardView",
    "name": "HardView",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "hardware system monitoring performance cpu ram disk network gpu bios windows linux wmi python-objects json dual-output",
    "author": "gafoo",
    "author_email": "omarwaled3374@gmail.com",
    "download_url": null,
    "platform": null,
    "description": "\r\nHardView 3.0.0 - Advanced Hardware Information and Performance Monitoring Library\r\n\r\nA comprehensive Python library for querying low-level hardware information and monitoring system performance on Windows and Linux systems with enhanced dual output support.\r\n\r\nNEW FEATURES IN 3.0.0:\r\n- Dual Output Support: All functions now support both JSON strings and Python objects\r\n- Enhanced GPU Information: Detailed GPU data including driver version, memory size, video processor\r\n- Advanced Network Information: IP address arrays, DNS hostnames, enhanced adapter details\r\n- Improved Linux Support: Better compatibility with Linux systems\r\n- Memory Management: Enhanced memory safety and cleanup\r\n- Performance Monitoring Objects: Real-time monitoring with Python object output\r\n\r\nHardware Information Functions (JSON and Python Objects):\r\n- get_bios_info() / get_bios_info_objects(): BIOS manufacturer, version, release date\r\n- get_system_info() / get_system_info_objects(): System manufacturer, product name, UUID, serial\r\n- get_baseboard_info() / get_baseboard_info_objects(): Motherboard manufacturer, product, serial, version\r\n- get_chassis_info() / get_chassis_info_objects(): Chassis manufacturer, type, serial, version\r\n- get_cpu_info() / get_cpu_info_objects(): CPU name, cores, threads, speed, processor ID\r\n- get_ram_info() / get_ram_info_objects(): Total memory, individual memory modules\r\n- get_disk_info() / get_disk_info_objects(): Disk drives, models, sizes, interfaces\r\n- get_gpu_info() / get_gpu_info_objects(): GPU details, driver version, memory size, video processor\r\n- get_network_info() / get_network_info_objects(): Network adapters, MAC addresses, IP addresses, DNS\r\n- get_smart_info() / get_smart_info_objects(): Advanced disk information (SMART data)\r\n- get_partitions_info() / get_partitions_info_objects(): Advanced storage and partition information\r\n\r\nPerformance Monitoring Functions (JSON and Python Objects):\r\n- get_cpu_usage() / get_cpu_usage_objects(): Current CPU usage percentage\r\n- get_ram_usage() / get_ram_usage_objects(): Current RAM usage statistics\r\n- get_system_performance() / get_system_performance_objects(): Combined CPU and RAM usage\r\n- monitor_cpu_usage_duration() / monitor_cpu_usage_duration_objects(): Monitor CPU over time period\r\n- monitor_ram_usage_duration() / monitor_ram_usage_duration_objects(): Monitor RAM over time period\r\n- monitor_system_performance_duration() / monitor_system_performance_duration_objects(): Monitor both over time period\r\n\r\nUsage Examples:\r\n```python\r\nimport HardView\r\n\r\nbios_json = HardView.get_bios_info()\r\ncpu_json = HardView.get_cpu_info()\r\n\r\nbios_objects = HardView.get_bios_info_objects(0)\r\ncpu_objects = HardView.get_cpu_info_objects(0)\r\n\r\ncpu_usage = HardView.get_cpu_usage_objects(0)\r\nram_usage = HardView.get_ram_usage_objects(0)\r\n\r\ncpu_monitoring = HardView.monitor_cpu_usage_duration_objects(10, 500)\r\n```\r\n\r\nCross-platform Support:\r\n- Windows: WMI (Windows Management Instrumentation) queries\r\n- Linux: /proc, /sys filesystem reading and system calls\r\n- Enhanced error handling and memory management\r\n- Platform-specific optimizations\r\n\r\nAll functions return structured data in both JSON format and native Python objects for maximum flexibility.\r\n    \r\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A comprehensive Python library for collecting hardware information and performance monitoring with dual JSON/Python object output support.",
    "version": "3.0.1",
    "project_urls": {
        "Bug Reports": "https://github.com/gafoo173/HardView/issues",
        "Changelog": "https://github.com/gafoo173/HardView/docs/CHANGELOG.md",
        "Documentation": "https://github.com/gafoo173/HardView#readme",
        "Homepage": "https://github.com/gafoo173/HardView",
        "Source": "https://github.com/gafoo173/HardView"
    },
    "split_keywords": [
        "hardware",
        "system",
        "monitoring",
        "performance",
        "cpu",
        "ram",
        "disk",
        "network",
        "gpu",
        "bios",
        "windows",
        "linux",
        "wmi",
        "python-objects",
        "json",
        "dual-output"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ff1e8c7ca42681434e2f1149d4868a5008801f103a9eae6e31a300c543c7c4bc",
                "md5": "428591aac455804269d5d93e6dbe6770",
                "sha256": "966c791c77017a7938dd2e22e94a4a20c1d8fcafdc9afb737adb72d9cbbb28d7"
            },
            "downloads": -1,
            "filename": "hardview-3.0.1-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl",
            "has_sig": false,
            "md5_digest": "428591aac455804269d5d93e6dbe6770",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 92084,
            "upload_time": "2025-07-12T04:31:16",
            "upload_time_iso_8601": "2025-07-12T04:31:16.683412Z",
            "url": "https://files.pythonhosted.org/packages/ff/1e/8c7ca42681434e2f1149d4868a5008801f103a9eae6e31a300c543c7c4bc/hardview-3.0.1-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2d25e234631c6061a45610d05653a84445a15455ac748e2cb60202aaaf5a87e6",
                "md5": "f80b0d392b97d60255ce9dc258c43843",
                "sha256": "b623c4f87a2a9a2163d9d4992748793e5e00bb85c3097be223456ea4527f5e08"
            },
            "downloads": -1,
            "filename": "hardview-3.0.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f80b0d392b97d60255ce9dc258c43843",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 93399,
            "upload_time": "2025-07-12T04:31:22",
            "upload_time_iso_8601": "2025-07-12T04:31:22.588537Z",
            "url": "https://files.pythonhosted.org/packages/2d/25/e234631c6061a45610d05653a84445a15455ac748e2cb60202aaaf5a87e6/hardview-3.0.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "849320168d50f9c687a447a29d6218b4539babd463c95a4416922761e21e8bc2",
                "md5": "412992ca6d27378ee6106d5416432fc2",
                "sha256": "c051ed70fb438ef8d868ccfd0ee1ec135d0295a0fe19c8cf222751680c2bd716"
            },
            "downloads": -1,
            "filename": "hardview-3.0.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "412992ca6d27378ee6106d5416432fc2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 30774,
            "upload_time": "2025-07-12T04:31:28",
            "upload_time_iso_8601": "2025-07-12T04:31:28.804736Z",
            "url": "https://files.pythonhosted.org/packages/84/93/20168d50f9c687a447a29d6218b4539babd463c95a4416922761e21e8bc2/hardview-3.0.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "305cc763ad26656df2ad0e8154c1fb44c5e2754386d74e6f9ad6812d46ea4d66",
                "md5": "3f9951f204add1d529ea1dbd7be972cc",
                "sha256": "1380e2702741e0bbd5049350492fc82682c31661376ae25c49cdb124bc7cdb20"
            },
            "downloads": -1,
            "filename": "hardview-3.0.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3f9951f204add1d529ea1dbd7be972cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 39177,
            "upload_time": "2025-07-12T04:31:33",
            "upload_time_iso_8601": "2025-07-12T04:31:33.583645Z",
            "url": "https://files.pythonhosted.org/packages/30/5c/c763ad26656df2ad0e8154c1fb44c5e2754386d74e6f9ad6812d46ea4d66/hardview-3.0.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1cbfcac4116f567be60ec94d06172aa59668be8a5ea122fbf8dbb414de7e0d4f",
                "md5": "566a394c8270c8533befd7ee5508bcf0",
                "sha256": "97f51f72f88d0f48b77fbd93d493bba14314bfc5c25f13b3bc417b95c0585b4c"
            },
            "downloads": -1,
            "filename": "hardview-3.0.1-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl",
            "has_sig": false,
            "md5_digest": "566a394c8270c8533befd7ee5508bcf0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 92387,
            "upload_time": "2025-07-12T04:31:39",
            "upload_time_iso_8601": "2025-07-12T04:31:39.775576Z",
            "url": "https://files.pythonhosted.org/packages/1c/bf/cac4116f567be60ec94d06172aa59668be8a5ea122fbf8dbb414de7e0d4f/hardview-3.0.1-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6d482a1ffd586e606c74e6ea483a27604242106e5e0bf763cc68302c36971a26",
                "md5": "98993fe1f4bf7dbbbc4cd0d9424eea75",
                "sha256": "88640b9a6ec10c018c05e09a09fa34d9e4049f116c1206c65d01e116dc238d3b"
            },
            "downloads": -1,
            "filename": "hardview-3.0.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "98993fe1f4bf7dbbbc4cd0d9424eea75",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 94707,
            "upload_time": "2025-07-12T04:31:45",
            "upload_time_iso_8601": "2025-07-12T04:31:45.330827Z",
            "url": "https://files.pythonhosted.org/packages/6d/48/2a1ffd586e606c74e6ea483a27604242106e5e0bf763cc68302c36971a26/hardview-3.0.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "235884b4455627adbebfa056644604906626c2257ddbdc96347640e1816df519",
                "md5": "b9c17ca434db4a8f0f85d306bd632f44",
                "sha256": "6a6fe37ba432d07f345bbe3c0ced1fb670594690cb884eecd407f94c074a3279"
            },
            "downloads": -1,
            "filename": "hardview-3.0.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "b9c17ca434db4a8f0f85d306bd632f44",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 30771,
            "upload_time": "2025-07-12T04:31:49",
            "upload_time_iso_8601": "2025-07-12T04:31:49.684309Z",
            "url": "https://files.pythonhosted.org/packages/23/58/84b4455627adbebfa056644604906626c2257ddbdc96347640e1816df519/hardview-3.0.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e0536d4c8f7ede671492f3b6f3f5287ac757b3a53b9b05da73f6adcec4a02250",
                "md5": "a826032ff8260dcd20cf2e2605e5b5b1",
                "sha256": "dc02fa5b4a5e65662b2c403fc89095f1cbda4a0f7996aa61774e25d60db8bb1c"
            },
            "downloads": -1,
            "filename": "hardview-3.0.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a826032ff8260dcd20cf2e2605e5b5b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 39178,
            "upload_time": "2025-07-12T04:31:55",
            "upload_time_iso_8601": "2025-07-12T04:31:55.776540Z",
            "url": "https://files.pythonhosted.org/packages/e0/53/6d4c8f7ede671492f3b6f3f5287ac757b3a53b9b05da73f6adcec4a02250/hardview-3.0.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "700bffe22d98d43ca6c748ba5be584e0f4a3e7ab9af5d73d7d46ed489486b92a",
                "md5": "974b3b48109912afee773453981ceff1",
                "sha256": "bdcec36927f82d4bab617de03c679732bd2a8be7a1a28fc0309a58c419f204be"
            },
            "downloads": -1,
            "filename": "hardview-3.0.1-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl",
            "has_sig": false,
            "md5_digest": "974b3b48109912afee773453981ceff1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 95343,
            "upload_time": "2025-07-12T04:32:01",
            "upload_time_iso_8601": "2025-07-12T04:32:01.628337Z",
            "url": "https://files.pythonhosted.org/packages/70/0b/ffe22d98d43ca6c748ba5be584e0f4a3e7ab9af5d73d7d46ed489486b92a/hardview-3.0.1-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b56c194757abf504fb201199a1659b6f3b369141b5886896d7dceeec2b812059",
                "md5": "5bb97c043630ded5ebb4ed2313004537",
                "sha256": "e346242380fc88d938a31a3580f6937dc93bef728d29164d1c2bf8893b091186"
            },
            "downloads": -1,
            "filename": "hardview-3.0.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5bb97c043630ded5ebb4ed2313004537",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 98833,
            "upload_time": "2025-07-12T04:32:06",
            "upload_time_iso_8601": "2025-07-12T04:32:06.480208Z",
            "url": "https://files.pythonhosted.org/packages/b5/6c/194757abf504fb201199a1659b6f3b369141b5886896d7dceeec2b812059/hardview-3.0.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "19b2956d5faf3b3a365f7eceda37e8fa316ac97a22391632e3319f149139776f",
                "md5": "fe54d0ed83f90531d8e6479e375bd78f",
                "sha256": "3283a9a354dbe3f9f496e38baeb09a608818d45e8ce7d493d9888539e97d03d7"
            },
            "downloads": -1,
            "filename": "hardview-3.0.1-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "fe54d0ed83f90531d8e6479e375bd78f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 30432,
            "upload_time": "2025-07-12T04:32:10",
            "upload_time_iso_8601": "2025-07-12T04:32:10.286608Z",
            "url": "https://files.pythonhosted.org/packages/19/b2/956d5faf3b3a365f7eceda37e8fa316ac97a22391632e3319f149139776f/hardview-3.0.1-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "800468846383286cbb5b99f6aff88999750fded343ebd9c298bd2a492a7a9b95",
                "md5": "3e16e1d053bfce1d170fae8a30ab704d",
                "sha256": "6103a5552a459fa0cf62e650ae7941671aef4b80688592e588d72ce3f81b1396"
            },
            "downloads": -1,
            "filename": "hardview-3.0.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3e16e1d053bfce1d170fae8a30ab704d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 38844,
            "upload_time": "2025-07-12T04:32:14",
            "upload_time_iso_8601": "2025-07-12T04:32:14.641844Z",
            "url": "https://files.pythonhosted.org/packages/80/04/68846383286cbb5b99f6aff88999750fded343ebd9c298bd2a492a7a9b95/hardview-3.0.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1c660f12a659d5352e145fe9c69f6b586c4431b31a34d5a1008a424ceb69faf3",
                "md5": "9098574f5cb24ff2a19b72d75fda90ac",
                "sha256": "646d3d349b5a3f8b756ec91760e4bde64574fdb8fae8be5ed6d5b9be46085018"
            },
            "downloads": -1,
            "filename": "hardview-3.0.1-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl",
            "has_sig": false,
            "md5_digest": "9098574f5cb24ff2a19b72d75fda90ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 95359,
            "upload_time": "2025-07-12T04:32:19",
            "upload_time_iso_8601": "2025-07-12T04:32:19.682108Z",
            "url": "https://files.pythonhosted.org/packages/1c/66/0f12a659d5352e145fe9c69f6b586c4431b31a34d5a1008a424ceb69faf3/hardview-3.0.1-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9af19ecb19ffcf45759344cae2358a704cd4491b801cc8d8b2d0bfb991328739",
                "md5": "29fe449aaa0923a33e3334f9b308ca64",
                "sha256": "aa0a2e3f3b591bc4a58ee88d104d011498be0ed51906265a4004f65d3301f3c5"
            },
            "downloads": -1,
            "filename": "hardview-3.0.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "29fe449aaa0923a33e3334f9b308ca64",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 98747,
            "upload_time": "2025-07-12T04:32:25",
            "upload_time_iso_8601": "2025-07-12T04:32:25.776166Z",
            "url": "https://files.pythonhosted.org/packages/9a/f1/9ecb19ffcf45759344cae2358a704cd4491b801cc8d8b2d0bfb991328739/hardview-3.0.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9f5e8eea7c38b9fceccfec3f284903117a5940ebe16e7bcf42c54a4b04916da7",
                "md5": "a08ad3c0cbc82f5e9adc0cb00b2d3696",
                "sha256": "2e4226bbbebfa2944d938972ef240fb42766975a6171b8835cdb91ff48d25f5f"
            },
            "downloads": -1,
            "filename": "hardview-3.0.1-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "a08ad3c0cbc82f5e9adc0cb00b2d3696",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 30433,
            "upload_time": "2025-07-12T04:32:30",
            "upload_time_iso_8601": "2025-07-12T04:32:30.175736Z",
            "url": "https://files.pythonhosted.org/packages/9f/5e/8eea7c38b9fceccfec3f284903117a5940ebe16e7bcf42c54a4b04916da7/hardview-3.0.1-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "267e18c4a0fa2a1fda7298f5fd8aae2a66da47b6b58dfd0125d43806af2d5f4c",
                "md5": "64c9442c9fdc0bb810e7469ddcfff1df",
                "sha256": "03a8fbf393fbb6a72dc0955576e2b0e198ee6960797bd2cbf10f94937b3bade2"
            },
            "downloads": -1,
            "filename": "hardview-3.0.1-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "64c9442c9fdc0bb810e7469ddcfff1df",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 38841,
            "upload_time": "2025-07-12T04:32:34",
            "upload_time_iso_8601": "2025-07-12T04:32:34.517587Z",
            "url": "https://files.pythonhosted.org/packages/26/7e/18c4a0fa2a1fda7298f5fd8aae2a66da47b6b58dfd0125d43806af2d5f4c/hardview-3.0.1-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2fd90f9bed80f4a40ba4dbb4690d2b64ec21918fff70428deb67c91591168dfa",
                "md5": "a8c000782c0d69943d17a30efbab2023",
                "sha256": "d8228336af7dc31fe21c620f7875c9a666c5b054c4d1462b636e8b73702fa9c5"
            },
            "downloads": -1,
            "filename": "hardview-3.0.1-cp38-cp38-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl",
            "has_sig": false,
            "md5_digest": "a8c000782c0d69943d17a30efbab2023",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 93254,
            "upload_time": "2025-07-12T04:32:41",
            "upload_time_iso_8601": "2025-07-12T04:32:41.905349Z",
            "url": "https://files.pythonhosted.org/packages/2f/d9/0f9bed80f4a40ba4dbb4690d2b64ec21918fff70428deb67c91591168dfa/hardview-3.0.1-cp38-cp38-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "06d0ee4901d1b776b19f77df9c33d2cd98374583300b3853c4568b26aca38e69",
                "md5": "4a4f12b1fd9e20166c46d6daf1dcca39",
                "sha256": "d6486a69b80a0557122846f9342443b59d6a23e6e21e0f89c3cc0a3156338e1c"
            },
            "downloads": -1,
            "filename": "hardview-3.0.1-cp38-cp38-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4a4f12b1fd9e20166c46d6daf1dcca39",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 95279,
            "upload_time": "2025-07-12T04:32:46",
            "upload_time_iso_8601": "2025-07-12T04:32:46.630052Z",
            "url": "https://files.pythonhosted.org/packages/06/d0/ee4901d1b776b19f77df9c33d2cd98374583300b3853c4568b26aca38e69/hardview-3.0.1-cp38-cp38-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "80bf8fb8d3ba5061b7c8e3fc622dfb03a34206d033428110964ace6837c23a06",
                "md5": "f7b6a6038788934c50a378f2af371ebc",
                "sha256": "da32042180bc7b45de82385e814734dbb04d7e62b90b7de21d17bf43a1b331db"
            },
            "downloads": -1,
            "filename": "hardview-3.0.1-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "f7b6a6038788934c50a378f2af371ebc",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 30777,
            "upload_time": "2025-07-12T04:32:51",
            "upload_time_iso_8601": "2025-07-12T04:32:51.261618Z",
            "url": "https://files.pythonhosted.org/packages/80/bf/8fb8d3ba5061b7c8e3fc622dfb03a34206d033428110964ace6837c23a06/hardview-3.0.1-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "315a361c9d9ed8280b74cbf26ab7d84515a124e0850af70883cc46bf767c4aaa",
                "md5": "3f37bd5c0bd01fd9b67050676611e83f",
                "sha256": "fe6e7b643a46efd14c5cfdec36a597af13e791d12c0341e0953c2da8ae9bf0d4"
            },
            "downloads": -1,
            "filename": "hardview-3.0.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3f37bd5c0bd01fd9b67050676611e83f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 39364,
            "upload_time": "2025-07-12T04:32:56",
            "upload_time_iso_8601": "2025-07-12T04:32:56.410687Z",
            "url": "https://files.pythonhosted.org/packages/31/5a/361c9d9ed8280b74cbf26ab7d84515a124e0850af70883cc46bf767c4aaa/hardview-3.0.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "95d61316be6dfe19d852fa07a4f9c1d32d4946ba963781c83fa0913e1753753c",
                "md5": "126f37b1a63e4d925e33abcfb62e90db",
                "sha256": "bad02189ca7b739420f28c35156447018a80f4687f7c77fd71b2b7dbdcc41656"
            },
            "downloads": -1,
            "filename": "hardview-3.0.1-cp39-cp39-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl",
            "has_sig": false,
            "md5_digest": "126f37b1a63e4d925e33abcfb62e90db",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 90902,
            "upload_time": "2025-07-12T04:33:02",
            "upload_time_iso_8601": "2025-07-12T04:33:02.502720Z",
            "url": "https://files.pythonhosted.org/packages/95/d6/1316be6dfe19d852fa07a4f9c1d32d4946ba963781c83fa0913e1753753c/hardview-3.0.1-cp39-cp39-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ee60e41ecc78babb9c651b737d258442202229993a732f4e9e72ecf02f0eccf2",
                "md5": "19cc52a91ff458dde2cd74eeef7eee7f",
                "sha256": "cdae45202db3fbf293e4c43e873ce6ba664491a512f4a8d7f8bc17ab8c0d515d"
            },
            "downloads": -1,
            "filename": "hardview-3.0.1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "19cc52a91ff458dde2cd74eeef7eee7f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 92007,
            "upload_time": "2025-07-12T04:33:07",
            "upload_time_iso_8601": "2025-07-12T04:33:07.422229Z",
            "url": "https://files.pythonhosted.org/packages/ee/60/e41ecc78babb9c651b737d258442202229993a732f4e9e72ecf02f0eccf2/hardview-3.0.1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5af50e30d04a2a417e3f4a7d00541d59c60734499e2e8ffaf0395384f22e6267",
                "md5": "d69bd723964d5a8a338c8984c1b24dfd",
                "sha256": "e5bed950a0b53b8c673d5f255176424b15edc73fbd8dcba2e4a94d718900bcec"
            },
            "downloads": -1,
            "filename": "hardview-3.0.1-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "d69bd723964d5a8a338c8984c1b24dfd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 30837,
            "upload_time": "2025-07-12T04:33:11",
            "upload_time_iso_8601": "2025-07-12T04:33:11.327625Z",
            "url": "https://files.pythonhosted.org/packages/5a/f5/0e30d04a2a417e3f4a7d00541d59c60734499e2e8ffaf0395384f22e6267/hardview-3.0.1-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1b64d49dacb118bf2463acdc4899c766c3b5e29a9ff7b6fd9b1071a190668fca",
                "md5": "22e10cc5cc9c1f3ee079eb8d85ae1ccb",
                "sha256": "4a31aa59bc8b7164a234328738297b4cec9d3095d308f70d9fb50d459415da2f"
            },
            "downloads": -1,
            "filename": "hardview-3.0.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "22e10cc5cc9c1f3ee079eb8d85ae1ccb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 39432,
            "upload_time": "2025-07-12T04:33:17",
            "upload_time_iso_8601": "2025-07-12T04:33:17.100712Z",
            "url": "https://files.pythonhosted.org/packages/1b/64/d49dacb118bf2463acdc4899c766c3b5e29a9ff7b6fd9b1071a190668fca/hardview-3.0.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-12 04:31:16",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "gafoo173",
    "github_project": "HardView",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "hardview"
}
        
Elapsed time: 1.20811s