{"id":19196097,"url":"https://github.com/gabrieldlima/hwinv","last_synced_at":"2026-05-05T17:33:11.773Z","repository":{"id":229829154,"uuid":"777743531","full_name":"gabrieldlima/hwinv","owner":"gabrieldlima","description":"Hardware Inventory (hwinv) to JSON 🔧","archived":false,"fork":false,"pushed_at":"2024-05-05T13:08:29.000Z","size":26,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-10-24T20:28:38.092Z","etag":null,"topics":["hardware-information","python","windows","wmi"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gabrieldlima.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-03-26T12:34:01.000Z","updated_at":"2024-09-22T22:26:05.000Z","dependencies_parsed_at":"2024-04-05T19:45:22.128Z","dependency_job_id":null,"html_url":"https://github.com/gabrieldlima/hwinv","commit_stats":null,"previous_names":["gabrieldlima/hwinfo"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/gabrieldlima/hwinv","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabrieldlima%2Fhwinv","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabrieldlima%2Fhwinv/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabrieldlima%2Fhwinv/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabrieldlima%2Fhwinv/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gabrieldlima","download_url":"https://codeload.github.com/gabrieldlima/hwinv/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gabrieldlima%2Fhwinv/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32660332,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-05T11:29:49.557Z","status":"ssl_error","status_checked_at":"2026-05-05T11:29:48.587Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["hardware-information","python","windows","wmi"],"created_at":"2024-11-09T12:12:34.264Z","updated_at":"2026-05-05T17:33:11.757Z","avatar_url":"https://github.com/gabrieldlima.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Hardware and Software Information Gathering Tool for Windows Systems\n\nThis Python program enables users to gather detailed hardware and software information from Windows systems using the [Win32 Provider](https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-provider). It provides comprehensive data on CPU, memory, disks, network adapters, operating system details, and more, outputting the results in JSON format for easy analysis and processing.\n\n## 🚀 Usage\n\nTo run the program, open a cmd or powershell and navigate to the directory containing the `main.py` file. Then, use the following command:\n\n```plaintext\npython.exe main.py output_folder\n```\n\n## 🖥️ Hardware Information\nThe hardware_info.json file contains detailed hardware information, including details on the computer, processor, memory, graphics, disk storage, and network adapters.\n```json\n{\n    \"COMPUTER\": [\n        {\n            \"S/N\": \"0000000\",\n            \"Model\": \"OptiPlex Micro 7010\",\n            \"Manufacturer\": \"Dell Inc.\"\n        }\n    ],\n    \"PROCESSOR\": [\n        {\n            \"Arch\": \"x86_64\",\n            \"Model\": \"13th Gen Intel(R) Core(TM) i5-13500T\",\n            \"Cores\": 14,\n            \"Threads\": 20\n        }\n    ],\n    \"MEMORY\": [\n        {\n            \"BankLabel\": \"DIMM0\",\n            \"MemoryType\": \"DDR4\",\n            \"FormFactor\": \"SODIMM\",\n            \"Manufacturer\": \"KINGSTON\",\n            \"Capacity\": \"16384 MB\",\n            \"Speed\": \"3200 MHz\"\n        },\n        {\n            \"Slots used\": \"1 of 2\",\n            \"Size\": \"16 GB\"\n        }\n    ],\n    \"GRAPHICS\": [\n        {\n            \"Model\": \"Intel(R) UHD Graphics 770\"\n        }\n    ],\n    \"DISK\": [\n        {\n            \"Model\": \"KINGSTON SNV2S500G\",\n            \"Serial Number\": \"0000_0000_0000\",\n            \"Size\": \"466 GB\"\n        }\n    ],\n    \"NETWORK\": [\n        {\n            \"Description\": \"Intel(R) Ethernet Connection (17) I219-LM\",\n            \"MAC Address\": \"D0:94:66:E3:C0:5B\",\n            \"Network Adapter\": \"Ethernet\"\n        },\n        {\n            \"Description\": \"Intel(R) Wi-Fi 6E AX211 160MHz\",\n            \"MAC Address\": \"F0:20:FF:C7:86:9D\",\n            \"Network Adapter\": \"Wi-Fi\"\n        }\n    ]\n}\n```\n## 💿 Software information\nThe software_info.json file provides insights into the operating system and user details, including OS name, architecture, version, disk usage, and user information.\n```json\n{\n    \"OS\": [\n        {\n            \"OS Name\": \"Microsoft Windows 11 Pro\",\n            \"OS Architecture\": \"64 bits\",\n            \"OS Version\": \"10.0.22621\",\n            \"Install Date\": \"27/03/2024, 14:02:06\"\n        },\n        {\n            \"Local Disk (C:)\": {\n                \"Total\": \"465 GB\",\n                \"Used\": \"50 GB\",\n                \"Free\": \"415 GB\",\n                \"Percent\": \"10.8%\"\n            }\n        }\n    ],\n    \"USER\": [\n        {\n            \"Username\": \"DESKTOP-1VNS310\\\\User\",\n            \"Domain\": \"WORKGROUP\"\n        }\n    ]\n}\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgabrieldlima%2Fhwinv","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgabrieldlima%2Fhwinv","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgabrieldlima%2Fhwinv/lists"}