{"id":17946535,"url":"https://github.com/yutotnh/mkpw","last_synced_at":"2026-02-25T22:01:26.914Z","repository":{"id":259239498,"uuid":"876346658","full_name":"yutotnh/mkpw","owner":"yutotnh","description":"Highly customizable password generation tool. 🔑","archived":false,"fork":false,"pushed_at":"2025-04-29T01:52:34.000Z","size":126,"stargazers_count":0,"open_issues_count":5,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-03T01:02:13.965Z","etag":null,"topics":["cli","library","password-generator","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yutotnh.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-APACHE","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":"2024-10-21T20:12:54.000Z","updated_at":"2025-02-01T07:42:12.000Z","dependencies_parsed_at":"2024-12-14T23:30:52.089Z","dependency_job_id":null,"html_url":"https://github.com/yutotnh/mkpw","commit_stats":null,"previous_names":["yutotnh/mkpw"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/yutotnh/mkpw","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yutotnh%2Fmkpw","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yutotnh%2Fmkpw/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yutotnh%2Fmkpw/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yutotnh%2Fmkpw/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yutotnh","download_url":"https://codeload.github.com/yutotnh/mkpw/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yutotnh%2Fmkpw/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261059064,"owners_count":23103948,"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":["cli","library","password-generator","rust"],"created_at":"2024-10-29T07:06:06.413Z","updated_at":"2026-02-25T22:01:26.848Z","avatar_url":"https://github.com/yutotnh.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# mkpw\n\nHighly customizable password generation tool. 🔑\n\nThis tool uses the password generation library [password-maker](./password-maker). For more details, please refer to [password-maker/README.md](./password-maker/README.md).\n\n[![main flow](https://github.com/yutotnh/mkpw/actions/workflows/main.yml/badge.svg)](https://github.com/yutotnh/mkpw/actions/workflows/main.yml)\n[![crates.io](https://img.shields.io/crates/v/mkpw.svg)](https://crates.io/crates/mkpw)\n\n## Installation\n\n### From source\n\n```console\ncargo install --path .\n```\n\n### From crates.io\n\n```console\ncargo install mkpw\n```\n\n## Example\n\n### Generate a password with the default settings\n\nThe default settings are as follows:\n\n```console\n$ mkpw\n8m8s]@IV[d=2\\f_(\n```\n\n### Specify the length of the password\n\nYou can specify the length of the password as follows:\n\n```console\n# Generate a password with a length of 20\n$ mkpw --length 20\n/(DBnw!pv4@\"(ku|)/rx\n```\n\n### Specify symbols\n\nYou can change the symbols included in the password:\n\n```console\n# Change the symbols included in the password to @ or ^\n$ mkpw --symbol-candidates @^\n0@mg71C12TZNQuIj\n```\n\n### Specify the minimum count of occurrences\n\nYou can specify the minimum count of times a character appears as follows:\n\n```console\n# Generate a password with a minimum of 2 lowercases\n$ mkpw --lowercase-minimum-count 2\n6E?t(f/\u0026$muBK,HJ\n```\n\n### Specify other characters in the password\n\nYou can specify other characters to include in the password:\n\n```console\n# Generate a password with at least 2 of the following characters: 😺😸😹😻\n$ mkpw --other-candidates 😺😸😹😻 --other-minimum-count 2\n(6😸3aOx(8s7'T91😺\n```\n\n### Specify the number of passwords to generate\n\nYou can specify the number of passwords to generate:\n\n```console\n# Generate 5 passwords\n$ mkpw --count 5\n_{!sBZYjUO%8uAa!\nJ5_N@f{M%Akn5)+=\nBx6Wa.f`J|nE{Cx^\nzoWby9vgd31h6F,?\nPs\u003c-1lWE*,IaK8Ab\n```\n\n### Specify copying the password to the clipboard\n\nYou can copy the generated password to the clipboard:\n\n```console\n# Copy the generated password to the clipboard\n$ mkpw --clipboard\n```\n\n### Load completion script\n\nYou can load the completion script for the `mkpw` command:\n\n```console\n# Load the completion script for the mkpw command\n$ source \u003c(mkpw --completion bash)\n```\n\n## License\n\nLicensed under both the Apache License, Version 2.0 and the MIT License.\n\nYou may select, at your option, one of the above-listed licenses.\n\nSee the [LICENSE-APACHE](./LICENSE-APACHE) and [LICENSE-MIT](./LICENSE-MIT) files for the full text of the Apache License, Version 2.0 and the MIT License, respectively.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyutotnh%2Fmkpw","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyutotnh%2Fmkpw","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyutotnh%2Fmkpw/lists"}