Name | pymanuf JSON |
Version |
2025.3.1
JSON |
| download |
home_page | None |
Summary | 📇 A very simple Python library to get the manufacturer of a specific MAC address |
upload_time | 2025-03-01 00:41:47 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.9 |
license | MIT License
Copyright (c) 2025 Krypton
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
|
keywords |
networking
networks
mac address
manufacturer
mac address manufacturer
|
VCS |
 |
bugtrack_url |
|
requirements |
requests
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
<div align="center">
# pymanuf
[](https://pypi.org/p/pymanuf)
[](https://pypi.org/p/pymanuf)
[](https://github.com/kkrypt0nn/pymanuf/actions)
[](https://discord.gg/mTBrXyWxAF)
[](https://github.com/kkrypt0nn/pymanuf/commits/main)
[](https://conventionalcommits.org/en/v1.0.0/)
</div>
---
A very simple Python library to get the manufacturer of a specific MAC address
## Getting Started
### Installation
If you want to use this library for one of your projects, you can install it like any other Python library
```bash
python -m pip install pymanuf
```
### Versioning
The versioning of the library is the following: `YYYY.MM.DD` where the leading `0` is **removed**.
Versions are automatically released every month on the first day of that month.
### Example Usage
#### Offline Lookup (preferred)
```python
from pymanuf import lookup
try:
manuf = lookup("C4:A8:1D:73:D7:8C")
print(f"Manufacturer: {manuf}")
except Exception as e:
print(f"Error: {e}")
```
#### Online Lookup
```python
from pymanuf.online import lookup
try:
manuf = lookup("C4:A8:1D:73:D7:8C")
print(f"Manufacturer: {manuf}")
except Exception as e:
print(f"Error: {e}")
```
## Troubleshooting
If you have problems using the library, you can open up an [issue](https://github.com/kkrypt0nn/pymanuf/issues) or join my [Discord server](https://discord.gg/mTBrXyWxAF).
## Contributing
People may contribute by following the [Contributing Guidelines](./CONTRIBUTING.md) and
the [Code of Conduct](./CODE_OF_CONDUCT.md)
## License
This library was made with 💜 by Krypton and is under the [MIT License](./LICENSE.md).
Raw data
{
"_id": null,
"home_page": null,
"name": "pymanuf",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "networking, networks, mac address, manufacturer, mac address manufacturer",
"author": null,
"author_email": "Krypton <root@krypton.ninja>",
"download_url": "https://files.pythonhosted.org/packages/e7/c8/6b2a0bd9b5ba930e39c447d1944a9dd636e45a13542195b0d53b713a55f2/pymanuf-2025.3.1.tar.gz",
"platform": null,
"description": "<div align=\"center\">\n\n# pymanuf\n\n[](https://pypi.org/p/pymanuf)\n[](https://pypi.org/p/pymanuf)\n[](https://github.com/kkrypt0nn/pymanuf/actions)\n\n[](https://discord.gg/mTBrXyWxAF)\n[](https://github.com/kkrypt0nn/pymanuf/commits/main)\n[](https://conventionalcommits.org/en/v1.0.0/)\n\n</div>\n\n---\n\nA very simple Python library to get the manufacturer of a specific MAC address\n\n## Getting Started\n\n### Installation\n\nIf you want to use this library for one of your projects, you can install it like any other Python library\n\n```bash\npython -m pip install pymanuf\n```\n\n### Versioning\n\nThe versioning of the library is the following: `YYYY.MM.DD` where the leading `0` is **removed**.\n\nVersions are automatically released every month on the first day of that month.\n\n### Example Usage\n\n#### Offline Lookup (preferred)\n\n```python\nfrom pymanuf import lookup\n\ntry:\n manuf = lookup(\"C4:A8:1D:73:D7:8C\")\n print(f\"Manufacturer: {manuf}\")\nexcept Exception as e:\n print(f\"Error: {e}\")\n```\n\n#### Online Lookup\n\n```python\nfrom pymanuf.online import lookup\n\ntry:\n manuf = lookup(\"C4:A8:1D:73:D7:8C\")\n print(f\"Manufacturer: {manuf}\")\nexcept Exception as e:\n print(f\"Error: {e}\")\n```\n\n## Troubleshooting\n\nIf you have problems using the library, you can open up an [issue](https://github.com/kkrypt0nn/pymanuf/issues) or join my [Discord server](https://discord.gg/mTBrXyWxAF).\n\n## Contributing\n\nPeople may contribute by following the [Contributing Guidelines](./CONTRIBUTING.md) and\nthe [Code of Conduct](./CODE_OF_CONDUCT.md)\n\n## License\n\nThis library was made with \ud83d\udc9c by Krypton and is under the [MIT License](./LICENSE.md).\n",
"bugtrack_url": null,
"license": "MIT License\n \n Copyright (c) 2025 Krypton\n \n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n \n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n \n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n ",
"summary": "\ud83d\udcc7 A very simple Python library to get the manufacturer of a specific MAC address",
"version": "2025.3.1",
"project_urls": {
"Homepage": "https://github.com/kkrypt0nn/pymanuf",
"Issues": "https://github.com/kkrypt0nn/pymanuf/issues",
"Source": "https://github.com/kkrypt0nn/pymanuf"
},
"split_keywords": [
"networking",
" networks",
" mac address",
" manufacturer",
" mac address manufacturer"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "50e32d15a74a39b033b41a32c18bdfa8ebc373d075b3a23d93331d1f50675a5f",
"md5": "472a682aa1a60c3838b664ea6df59cbb",
"sha256": "bcf8f8cc1e341324485d0a38bc6031b03c68256e73ed63be92b51c99a4827dfb"
},
"downloads": -1,
"filename": "pymanuf-2025.3.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "472a682aa1a60c3838b664ea6df59cbb",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 596974,
"upload_time": "2025-03-01T00:41:45",
"upload_time_iso_8601": "2025-03-01T00:41:45.639223Z",
"url": "https://files.pythonhosted.org/packages/50/e3/2d15a74a39b033b41a32c18bdfa8ebc373d075b3a23d93331d1f50675a5f/pymanuf-2025.3.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e7c86b2a0bd9b5ba930e39c447d1944a9dd636e45a13542195b0d53b713a55f2",
"md5": "b968e93ff408e93dee870c6a046fdbd5",
"sha256": "87b2eb9d4223265e06bbda58617dbaac97898e84d67b6b85ebfc56aa98ce2a23"
},
"downloads": -1,
"filename": "pymanuf-2025.3.1.tar.gz",
"has_sig": false,
"md5_digest": "b968e93ff408e93dee870c6a046fdbd5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 594493,
"upload_time": "2025-03-01T00:41:47",
"upload_time_iso_8601": "2025-03-01T00:41:47.296107Z",
"url": "https://files.pythonhosted.org/packages/e7/c8/6b2a0bd9b5ba930e39c447d1944a9dd636e45a13542195b0d53b713a55f2/pymanuf-2025.3.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-03-01 00:41:47",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "kkrypt0nn",
"github_project": "pymanuf",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"requirements": [
{
"name": "requests",
"specs": []
}
],
"lcname": "pymanuf"
}