{"id":19825265,"url":"https://github.com/tes3awy/hex-to-ip-conversion","last_synced_at":"2026-06-06T22:31:50.296Z","repository":{"id":40237291,"uuid":"358292138","full_name":"Tes3awy/HEX-to-IP-Conversion","owner":"Tes3awy","description":"Convert an IPv4 Address  to a HEX IP and vice versa","archived":false,"fork":false,"pushed_at":"2023-07-20T18:19:19.000Z","size":80,"stargazers_count":0,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-11T08:51:44.167Z","etag":null,"topics":["cisco","ciscodevnet","hex","hex-ips","ip-address","ipv4","ipv4-address","netdevops","python","python3","vscode"],"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/Tes3awy.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":"2021-04-15T14:39:29.000Z","updated_at":"2022-05-05T15:49:00.000Z","dependencies_parsed_at":"2025-01-11T08:51:22.410Z","dependency_job_id":"4f682afd-55b3-4468-8e8b-c6df49bd54de","html_url":"https://github.com/Tes3awy/HEX-to-IP-Conversion","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tes3awy%2FHEX-to-IP-Conversion","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tes3awy%2FHEX-to-IP-Conversion/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tes3awy%2FHEX-to-IP-Conversion/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tes3awy%2FHEX-to-IP-Conversion/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Tes3awy","download_url":"https://codeload.github.com/Tes3awy/HEX-to-IP-Conversion/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241181414,"owners_count":19923432,"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":["cisco","ciscodevnet","hex","hex-ips","ip-address","ipv4","ipv4-address","netdevops","python","python3","vscode"],"created_at":"2024-11-12T11:07:07.623Z","updated_at":"2025-11-24T05:03:36.245Z","avatar_url":"https://github.com/Tes3awy.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Python 3.7+](https://img.shields.io/badge/python-3.7+-blue.svg?logo=python\u0026style=flat-square)](https://www.python.org/downloads)\n[![Code Size](https://img.shields.io/github/languages/code-size/Tes3awy/HEX-to-IP-Conversion?color=green\u0026style=flat-square)](https://github.com/Tes3awy/HEX-to-IP-Conversion)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg?style=flat-square)](https://github.com/psf/black)\n[![Imports: isort](https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat-square\u0026labelColor=ef8336)](https://pycqa.github.io/isort/)\n[![Pre-Commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit\u0026logoColor=white\u0026style=flat-square)](https://github.com/pre-commit/pre-commit)\n[![License](https://img.shields.io/github/license/Tes3awy/HEX-to-IP-Conversion?color=purple\u0026style=flat-square)](https://github.com/Tes3awy/HEX-to-IP-Conversion)\n\n# Convert IPv4 Address to Hexadecimal Address and vice versa\n\n\u003e This application is useful for Cisco Wireless and Collaboration teams where Hexadecimal Addresses are preferably to be used in DHCP pools option commands.\n\n**DHCP Pools Example**\n\n```powershell\nconfigure terminal\n!\nip dhcp pool APs\n   network 60.0.0.0 255.255.255.0\n   default-router 60.0.0.1\n   option 43 hex f104.0a0a.0a0f\nexit\n!\nip dhcp pool Voice\n   network 192.168.1.0 255.255.255.0\n   default-router 192.168.1.1\n   option 150 hex c0a8.0101\n   lease 86400\nexit\n!\nend\n```\n\n## Table of Contents\n\n1. [Getting Started](#getting-started)\n2. [Installation on Windows](#installation-on-windows)\n3. [Installation on macOs and Linux](#installation-on-macos-and-linux)\n4. [Usage](#usage)\n\n### Getting Started\n\n**Directory Structure**\n\n```bash\n│   main.py  # Main application\n│   conversion.py  # conversion class\n│   README.md\n│   requirements.txt\n│   .pre-commit-config.yaml\n│   .gitignore\n│   LICENSE\n└───\n```\n\n---\n\n### Installation on Windows\n\n```bash\npath\\to\\folder\u003e git clone https://github.com/Tes3awy/HEX-to-IP-Conversion.git\npath\\to\\folder\u003e cd HEX-to-IP-Conversion\npath\\to\\folder\u003e py -m venv .venv\npath\\to\\folder\u003e .venv\\Scripts\\Activate.ps1\npath\\to\\folder\u003e py -m pip install --upgrade pip setuptools\npath\\to\\folder\u003e py -m pip install -r requirements.txt\n```\n\n### Installation on macOS and Linux\n\n```bash\n$ git clone https://github.com/Tes3awy/HEX-to-IP-Conversion.git\n$ cd HEX-to-IP-Conversion\n$ python3 -m venv .venv\n$ source .venv/bin/activate\n$ python3 -m pip install --upgrade pip setuptools\n$ python3 -m pip install -r requirements.txt --upgrade\n```\n\n---\n\n### Usage\n\n```bash\n(.venv)$ python -m main\n\n[1] IPv4 to Hex\n[2] Hex to IPv4\n\nEnter 1 or 2 [Default 1]:\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftes3awy%2Fhex-to-ip-conversion","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftes3awy%2Fhex-to-ip-conversion","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftes3awy%2Fhex-to-ip-conversion/lists"}