{"id":20106774,"url":"https://github.com/nneji123/psgen","last_synced_at":"2025-05-06T09:32:06.727Z","repository":{"id":57750648,"uuid":"525681889","full_name":"Nneji123/psgen","owner":"Nneji123","description":"Password Generator and Hashing + Salting tool. Built entirely with python.","archived":false,"fork":false,"pushed_at":"2022-08-22T14:22:30.000Z","size":723,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"dev","last_synced_at":"2025-05-04T21:57:11.324Z","etag":null,"topics":["deploy","github-actions","password","password-generator","pip","pypi-package","python"],"latest_commit_sha":null,"homepage":"https://nneji123.github.io/psgen/","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/Nneji123.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"docs/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-08-17T07:19:28.000Z","updated_at":"2022-11-03T09:37:15.000Z","dependencies_parsed_at":"2022-08-26T09:30:23.993Z","dependency_job_id":null,"html_url":"https://github.com/Nneji123/psgen","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nneji123%2Fpsgen","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nneji123%2Fpsgen/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nneji123%2Fpsgen/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nneji123%2Fpsgen/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Nneji123","download_url":"https://codeload.github.com/Nneji123/psgen/tar.gz/refs/heads/dev","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252657329,"owners_count":21783800,"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":["deploy","github-actions","password","password-generator","pip","pypi-package","python"],"created_at":"2024-11-13T17:54:44.040Z","updated_at":"2025-05-06T09:32:06.407Z","avatar_url":"https://github.com/Nneji123.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# psgen\n[![Pypi](https://img.shields.io/pypi/v/psgen.svg)](https://pypi.org/project/psgen/)\n[![PyPI - Python](https://img.shields.io/badge/python-3.6%20|%203.7%20|%203.8-blue.svg)](https://pypi.org/project/psgen/)\n[![Downloads](https://pepy.tech/badge/psgen)](https://pepy.tech/project/psgen)\n[![tests](https://github.com/Nneji123/psgen/actions/workflows/test.yml/badge.svg)](https://github.com/Nneji123/psgen/actions/workflows/test.yml)\n[![docs](https://github.com/Nneji123/psgen/actions/workflows/publish-docs.yml/badge.svg)](https://github.com/Nneji123/psgen/actions/workflows/publish-docs.yml)\n[![MIT licensed](https://img.shields.io/badge/license-MIT-green.svg)](https://raw.githubusercontent.com/Nneji123/psgen/dev/LICENSE)\n\n## Description\n\nRandom password generator tool made with python.\n\n## Installation \u0026 usage\n\n```console   \n\n$ pip install psgen \n\n$ psgen\n52db9s%NhA1C\n```\n\n\n\n## Install from source\n\n\n```console\n$ git clone https://github.com/Nneji123/psgen.git\n$ cd psgen\n$ pip install -e .\n```\n\n\n\n## Use within another Python script\n\n\n```Python\n\u003e\u003e\u003e from psgen.psgen import generate_password_all\n\n\u003e\u003e\u003e generate_password(12) # this will print out a 12 character password\n'52db9s%NhA1C'\n```\n\n**For more information visit the official [documentation.](https://nneji123.github.io/psgen/)**\n\n\n\n## Advanced options\n\n\n```console\n$ psgen --help\nusage: psgen [-h] [--number NUMBER] [--nodigit NODIGIT] [--noupcase NOUPCASE] [--nolowercase NOLOWERCASE] [--nosymbols NOSYMBOLS]\n             [--onlydigits ONLYDIGITS] [--onlylocase ONLYLOCASE] [--onlyupcase ONLYUPCASE] [--onlysymbols ONLYSYMBOLS]\n\nGenerate a random password with numbers, symbols and letters.\n\noptional arguments:\n  -h, --help            show this help message and exit\n  --number NUMBER       Write the length of the password you want to generate.The default value is 12. Example psgen --number 12\n  --nodigit NODIGIT     This will generate a random password with no digits. Example psgen --nodigit 12\n  --noupcase NOUPCASE   This will generate a random password with no uppercase letters. Example psgen --noupcase 12\n  --nolowercase NOLOWERCASE\n                        This will generate a random password with no lowercase letters. Example psgen --nolowercase 12\n  --nosymbols NOSYMBOLS\n                        This will generate a random password with no symbols. Example psgen --nosymbols 12\n  --onlydigits ONLYDIGITS\n                        This will generate a random password with only digits. Example psgen --onlydigits 12\n  --onlylocase ONLYLOCASE\n                        This will generate a random password with only lowercase letters. Example psgen --onlylocase 12\n  --onlyupcase ONLYUPCASE\n                        This will generate a random password with only uppercase letters. Example psgen --onlyupcase 12\n  --onlysymbols ONLYSYMBOLS\n                        This will generate a random password with only symbols. Example psgen --onlysymbols 12\n\nHappy password creating! :)\n```\n\n\n\n## License\n[MIT](https://github.com/Nneji123/psgen/dev/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnneji123%2Fpsgen","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnneji123%2Fpsgen","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnneji123%2Fpsgen/lists"}