pymanuf


Namepymanuf JSON
Version 2025.3.1 PyPI version JSON
download
home_pageNone
Summary📇 A very simple Python library to get the manufacturer of a specific MAC address
upload_time2025-03-01 00:41:47
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseMIT 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

[![PyPi Badge](https://img.shields.io/pypi/v/pymanuf.svg)](https://pypi.org/p/pymanuf)
[![PyPi Supported Versions Badge](https://img.shields.io/pypi/pyversions/pymanuf.svg)](https://pypi.org/p/pymanuf)
[![CI Badge](https://github.com/kkrypt0nn/pymanuf/actions/workflows/ci.yml/badge.svg)](https://github.com/kkrypt0nn/pymanuf/actions)

[![Discord Server Badge](https://img.shields.io/discord/739934735387721768?logo=discord)](https://discord.gg/mTBrXyWxAF)
[![Last Commit Badge](https://img.shields.io/github/last-commit/kkrypt0nn/pymanuf)](https://github.com/kkrypt0nn/pymanuf/commits/main)
[![Conventional Commits Badge](https://img.shields.io/badge/Conventional%20Commits-1.0.0-%23FE5196?logo=conventionalcommits&logoColor=white)](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[![PyPi Badge](https://img.shields.io/pypi/v/pymanuf.svg)](https://pypi.org/p/pymanuf)\n[![PyPi Supported Versions Badge](https://img.shields.io/pypi/pyversions/pymanuf.svg)](https://pypi.org/p/pymanuf)\n[![CI Badge](https://github.com/kkrypt0nn/pymanuf/actions/workflows/ci.yml/badge.svg)](https://github.com/kkrypt0nn/pymanuf/actions)\n\n[![Discord Server Badge](https://img.shields.io/discord/739934735387721768?logo=discord)](https://discord.gg/mTBrXyWxAF)\n[![Last Commit Badge](https://img.shields.io/github/last-commit/kkrypt0nn/pymanuf)](https://github.com/kkrypt0nn/pymanuf/commits/main)\n[![Conventional Commits Badge](https://img.shields.io/badge/Conventional%20Commits-1.0.0-%23FE5196?logo=conventionalcommits&logoColor=white)](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"
}
        
Elapsed time: 1.69310s