{"id":16545446,"url":"https://github.com/hasansezertasan/hwid","last_synced_at":"2025-06-10T12:36:08.270Z","repository":{"id":197460085,"uuid":"698694762","full_name":"hasansezertasan/hwid","owner":"hasansezertasan","description":"Extract the `hwid` on Windows, Linux, Mac. Cross-platform using Python, native OS detection.","archived":false,"fork":false,"pushed_at":"2025-06-09T17:34:19.000Z","size":663,"stargazers_count":8,"open_issues_count":12,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-09T18:31:54.556Z","etag":null,"topics":["cli","hardware","hwid","package","pypi","pypi-package","pypi-reserved","python","used-poetry"],"latest_commit_sha":null,"homepage":"https://hasansezertasan.github.io/hwid/","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/hasansezertasan.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","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,"zenodo":null},"funding":{"github":["hasansezertasan"]}},"created_at":"2023-09-30T17:16:55.000Z","updated_at":"2025-05-13T19:18:08.000Z","dependencies_parsed_at":"2023-12-16T00:13:52.607Z","dependency_job_id":"caed0d97-8fd1-49c7-8118-d63bcad7c909","html_url":"https://github.com/hasansezertasan/hwid","commit_stats":{"total_commits":17,"total_committers":3,"mean_commits":5.666666666666667,"dds":0.5294117647058824,"last_synced_commit":"6a884955b88299f96d5ffc692170ed1a39359e73"},"previous_names":["hasansezertasan/hwid"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hasansezertasan%2Fhwid","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hasansezertasan%2Fhwid/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hasansezertasan%2Fhwid/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hasansezertasan%2Fhwid/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hasansezertasan","download_url":"https://codeload.github.com/hasansezertasan/hwid/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hasansezertasan%2Fhwid/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":258936267,"owners_count":22780945,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["cli","hardware","hwid","package","pypi","pypi-package","pypi-reserved","python","used-poetry"],"created_at":"2024-10-11T19:06:57.338Z","updated_at":"2025-06-10T12:36:08.214Z","avatar_url":"https://github.com/hasansezertasan.png","language":"Python","funding_links":["https://github.com/sponsors/hasansezertasan"],"categories":[],"sub_categories":[],"readme":"# HWID\n\n[![Coverage](https://img.shields.io/codecov/c/github/hasansezertasan/hwid)](https://codecov.io/gh/hasansezertasan/hwid)\n[![PyPI - Version](https://img.shields.io/pypi/v/hwid.svg)](https://pypi.org/project/hwid)\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/hwid.svg)](https://pypi.org/project/hwid)\n[![License](https://img.shields.io/github/license/hasansezertasan/hwid.svg)](https://github.com/hasansezertasan/hwid/blob/main/LICENSE)\n[![Latest Commit](https://img.shields.io/github/last-commit/hasansezertasan/hwid)](https://github.com/hasansezertasan/hwid)\n\n[![Downloads](https://pepy.tech/badge/hwid)](https://pepy.tech/project/hwid)\n[![Downloads/Month](https://pepy.tech/badge/hwid/month)](https://pepy.tech/project/hwid)\n[![Downloads/Week](https://pepy.tech/badge/hwid/week)](https://pepy.tech/project/hwid)\n\nExtract the `hwid` on Windows, Linux, Mac. Cross-platform using Python, native OS detection.\n\n---\n\n## Table of Contents\n\n- [HWID](#hwid)\n  - [Table of Contents](#table-of-contents)\n  - [Installation](#installation)\n  - [Usage](#usage)\n  - [Motivation](#motivation)\n  - [Features](#features)\n  - [Warning](#warning)\n  - [Author](#author)\n  - [Disclaimer](#disclaimer)\n  - [License](#license)\n\n## Installation\n\n``` bash\npip install hwid\n```\n\n## Usage\n\nModule:\n\n```python\nimport hwid\nprint(hwid.get_hwid())\n# 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX'\n```\n\nCLI:\n\n```bash\nhwid\nXXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX\n```\n\n## Motivation\n\nTL;DR I don't want to copy and paste it again...\n\nI have created a bunch of desktop applications for Windows. I needed a way to license my applications for my users to use it without distributing to other people. I decided to use the hwid of the computer to license my applications. I needed a way to get the hwid of the computer, so I created this module. It has only one purpose: getting the hwid of the computer. It is cross-platform and does not require any external dependencies.\n\n## Features\n\n- Cross-platform\n- No external dependencies\n- CLI\n- Module\n\n## Warning\n\nI do not recommend using this module for licensing purposes all alone. You can use it as a part of your licensing system.\n\nIf you are using server-client architecture, you can send the encrypted hwid to the server and check if it is valid. But keep in mind, It's easy to intercept the http requests with [mitmproxy] or other tools.\n\nIf you are using a local licensing system, you can encrypt the hwid and store it in a file. Then you can check if the encrypted hwid is valid. You can use [pyarmor] to obfuscate your code. It will make it harder to reverse engineer your code. Here is a [NeuralNine Tutorial][neuralnine-tutorial] using [Oxyry][oxyry]\n\n## Author\n\n- [hasansezertasan](https://www.github.com/hasansezertasan)\n\n## Disclaimer\n\nThis module is not intended to be used for malicious purposes. The author is not responsible for any damage caused by this module. Use at your own risk.\n\n## License\n\n`hwid` is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.\n\n\u003c!-- Links --\u003e\n[mitmproxy]: https://mitmproxy.org/\n[pyarmor]:https://github.com/dashingsoft/pyarmor\n[neuralnine-tutorial]: https://www.youtube.com/watch?v=k4bLhDolLf0\n[oxyry]: https://pyob.oxyry.com/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhasansezertasan%2Fhwid","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhasansezertasan%2Fhwid","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhasansezertasan%2Fhwid/lists"}