{"id":34501328,"url":"https://github.com/kimuracoz/pypass-gen","last_synced_at":"2026-05-25T13:34:19.261Z","repository":{"id":329962054,"uuid":"1121098349","full_name":"KimuraCoz/PyPass-Gen","owner":"KimuraCoz","description":"A Python-based tool to generate secure passwords via terminal (CLI) or visual interface (GUI).","archived":false,"fork":false,"pushed_at":"2025-12-22T14:10:26.000Z","size":11,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-24T01:16:02.159Z","etag":null,"topics":["automation","cli","gui","password-generator","python","security","tools"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/KimuraCoz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-22T12:39:11.000Z","updated_at":"2025-12-22T14:10:30.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/KimuraCoz/PyPass-Gen","commit_stats":null,"previous_names":["kimuracoz/pypass-gen"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/KimuraCoz/PyPass-Gen","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KimuraCoz%2FPyPass-Gen","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KimuraCoz%2FPyPass-Gen/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KimuraCoz%2FPyPass-Gen/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KimuraCoz%2FPyPass-Gen/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/KimuraCoz","download_url":"https://codeload.github.com/KimuraCoz/PyPass-Gen/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KimuraCoz%2FPyPass-Gen/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":27992996,"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","status":"online","status_checked_at":"2025-12-24T02:00:07.193Z","response_time":83,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["automation","cli","gui","password-generator","python","security","tools"],"created_at":"2025-12-24T02:00:57.087Z","updated_at":"2025-12-24T02:01:44.784Z","avatar_url":"https://github.com/KimuraCoz.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PyPass Gen (Network Edition)\n\n**PyPass Gen** is a versatile security tool built with Python, specifically designed for **Network Engineers** and IT enthusiasts. \n\nUnlike standard password generators, this tool includes specialized features for network security, such as **WPA2 Wi-Fi Keys** and **MAC Address** generation. Available in both **CLI** (Terminal) and **GUI** (Visual) modes.\n\n## Project Structure\n\n- `main.py`: The main entry point of the application.\n- `cli_app.py`: The script for running the generator in the terminal (Command Line Interface).\n- `gui_app.py`: The script for running the generator with a visual interface (Graphical User Interface).\n- `requirements.txt`: List of dependencies required to run the project.\n\n## Key Features\n\n1. **Standard Password Mode**\n   Generate strong, random passwords with customizable length (Letters, Digits, Symbols).\n   \n2. **WPA2 Key Generator (Wi-Fi)**\n   Generates a **64-character Hexadecimal Key** (32 bytes). This is the highest security standard format for WPA2-PSK Wi-Fi passwords.\n\n3. **MAC Address Generator**\n   Generates a random **Media Access Control (MAC) Address** (Format: `XX:XX:XX:XX:XX:XX`). Useful for network testing, spoofing, or assigning fake identities to devices.\n\n## Installation \u0026 Setup\n\nTo run this project, it is recommended to use a virtual environment to keep dependencies isolated.\n\n1. **Clone or Download the repository**\n   \n2. **Create a Virtual Environment**\n   Open your terminal in the project folder and run:\n   ```bash\n   python -m venv .venv\n   ```\n   \n3. **Activate the Virtual Environment**\n* **Windows (Command Prompt):**\n```bash\n.venv\\Scripts\\activate\n\n```\n\n* **Windows (PowerShell):**\n```powershell\n.venv\\Scripts\\Activate.ps1\n\n```\n\n* **Mac/Linux:**\n```bash\nsource .venv/bin/activate\n\n```\n\n4. **Install Dependencies**\nOnce the virtual environment is active (you will see `(.venv)` in your terminal), install the required libraries:\n```bash\npip install -r requirements.txt\n\n```\n\n## Usage\n\nMake sure your virtual environment is activated before running the scripts.\n\n### Option 1: Run via Main Entry\n\nUsually, this will let you choose between CLI or GUI mode:\n\n```bash\npython main.py\n\n```\n\n### Option 2: Run CLI Mode Directly\n\nIf you prefer using the terminal:\n\n```bash\npython cli_app.py\n\n```\n\n### Option 3: Run GUI Mode Directly\n\nIf you prefer a visual interface:\n\n```bash\npython gui_app.py\n\n```\n\n## Requirements\n\n* Python 3.x\n* Libraries listed in `requirements.txt` (e.g., `colorama`, etc.)\n\n## Bonus: Create a Desktop Shortcut (No Console Window)\n\nWant to run the app like a real software without opening VS Code or seeing a black terminal window? Follow these steps:\n\n1.  **Create Shortcut**\n    - Right-click on `gui_app.py`.\n    - Select **Send to** \u003e **Desktop (create shortcut)**.\n\n2.  **Configure Properties (Crucial Step!)**\n    - Go to your Desktop, right-click the new shortcut, and select **Properties**.\n    - In the **Target** field, you need to point it to the Python inside the `.venv` folder using `pythonw.exe` (this hides the terminal).\n    - Change the **Target** to look like this format:\n      ```text\n      \"[PATH_TO_PROJECT]\\.venv\\Scripts\\pythonw.exe\" \"[PATH_TO_PROJECT]\\gui_app.py\"\n      ```\n      *(Replace `[PATH_TO_PROJECT]` with the actual location of your folder).*\n\n3.  **Set \"Start in\" Folder**\n    - Make sure the **Start in** field points to your project folder:\n      ```text\n      \"D:\\Your\\Project\\Folder\\PyPass-Gen\"\n      ```\n\n4.  **Change Icon (Optional)**\n    - In the **Shortcut** tab, click **Change Icon**.\n    - Browse and select a `.ico` file (e.g., a lock image) to make it look professional!\n\n---\n\n*Created for educational purposes.*\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkimuracoz%2Fpypass-gen","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkimuracoz%2Fpypass-gen","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkimuracoz%2Fpypass-gen/lists"}