{"id":24792729,"url":"https://github.com/misaghmomenib/password-generator-python","last_synced_at":"2026-05-01T01:32:11.339Z","repository":{"id":268791901,"uuid":"905483111","full_name":"MisaghMomeniB/Password-Generator-Python","owner":"MisaghMomeniB","description":"A Python-based Password Generator That Creates Secure and Random Passwords for Enhanced Online Security. Customizable for Different Length and Complexity Requirements, Ensuring Robust Protection for Your Accounts.","archived":false,"fork":false,"pushed_at":"2025-06-13T14:20:55.000Z","size":26,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-13T15:34:31.371Z","etag":null,"topics":["git","open-source","password-generator","python"],"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/MisaghMomeniB.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,"zenodo":null}},"created_at":"2024-12-18T23:23:20.000Z","updated_at":"2025-06-13T14:20:59.000Z","dependencies_parsed_at":"2024-12-19T00:27:07.485Z","dependency_job_id":"c5367db2-d45d-4957-a503-a845dc31f554","html_url":"https://github.com/MisaghMomeniB/Password-Generator-Python","commit_stats":null,"previous_names":["misaghmomenib/password-generator-python"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MisaghMomeniB/Password-Generator-Python","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MisaghMomeniB%2FPassword-Generator-Python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MisaghMomeniB%2FPassword-Generator-Python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MisaghMomeniB%2FPassword-Generator-Python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MisaghMomeniB%2FPassword-Generator-Python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MisaghMomeniB","download_url":"https://codeload.github.com/MisaghMomeniB/Password-Generator-Python/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MisaghMomeniB%2FPassword-Generator-Python/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32482460,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"ssl_error","status_checked_at":"2026-04-30T13:12:06.837Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["git","open-source","password-generator","python"],"created_at":"2025-01-29T20:54:40.934Z","updated_at":"2026-05-01T01:32:11.328Z","avatar_url":"https://github.com/MisaghMomeniB.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🔐 Password Generator (Python)\n\nA secure and customizable **strong password generator** script built in Python. Generate high-quality passwords with options for length, character types, and readability.\n\n---\n\n## 📋 Table of Contents\n\n1. [Overview](#overview)  \n2. [Features](#features)  \n3. [Requirements](#requirements)  \n4. [Installation](#installation)  \n5. [Usage](#usage)  \n6. [Code Structure](#code-structure)  \n7. [Security Notes](#security-notes)  \n8. [Contributing](#contributing)  \n9. [License](#license)\n\n---\n\n## 💡 Overview\n\nThis Python script lets users quickly generate random, secure passwords via CLI. It’s customizable and ideal for both personal use and integration into larger automation workflows.\n\n---\n\n## ✅ Features\n\n- Customizable **length** (default: 16 characters)  \n- Mix of **uppercase**, **lowercase**, **digits**, and **symbols**  \n- Option to **exlude similar-looking characters** (e.g., `O`, `0`, `l`, `1`)  \n- Choice to **avoid ambiguous symbols** for better readability  \n- Easily embeddable as a function or module in other Python projects\n\n---\n\n## 🧾 Requirements\n\n- **Python 3.7+**  \n- No external dependencies—just the Python standard library\n\n---\n\n## ⚙️ Installation\n\n```bash\ngit clone https://github.com/MisaghMomeniB/Password-Generator-Python.git\ncd Password-Generator-Python\npython3 --version  # ensure Python ≥3.7\n````\n\n---\n\n## 🚀 Usage\n\n### CLI Example\n\nRun the script directly with customizable options:\n\n```bash\npython3 password_generator.py --length 20 --no-ambiguous --no-similar\n```\n\n**Options:**\n\n* `--length \u003cint\u003e`: Set password length (default `16`)\n* `--no-ambiguous`: Exclude punctuation that’s hard to read\n* `--no-similar`: Skip characters like `0`, `O`, `l`, `1`\n* `--count \u003cint\u003e`: Generate multiple passwords in one run\n\n### As a Python Module\n\nImport `generate_password()` in your code:\n\n```python\nfrom password_generator import generate_password\n\npwd = generate_password(length=24, no_ambiguous=True)\nprint(\"Generated password:\", pwd)\n```\n\n---\n\n## 📁 Code Structure\n\n```\n/ (root)\n├── password_generator.py   # CLI script \u0026 core logic\n└── README.md               # This file\n```\n\n* `generate_password()`: main function with customizable options\n* `if __name__ == \"__main__\":` block handles CLI parsing via `argparse`\n\n---\n\n## 🔒 Security Notes\n\n* Uses `secrets.SystemRandom()` for cryptographic-quality randomness\n* Ensures a mix of character types by design\n* Avoids insecure `random` module\n\n---\n\n## 🤝 Contributing\n\nImprovements welcome! Suggested enhancements:\n\n* Add **pronounceable password** mode\n* Integrate **password strength estimation**\n* GUI or web-based interface\n\nTo contribute:\n\n1. Fork the repository\n2. Create a new branch (`feature/...`)\n3. Submit a detailed pull request\n\n---\n\n## 📄 License\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmisaghmomenib%2Fpassword-generator-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmisaghmomenib%2Fpassword-generator-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmisaghmomenib%2Fpassword-generator-python/lists"}