https://github.com/xsismadn3ss/password-creator
https://github.com/xsismadn3ss/password-creator
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/xsismadn3ss/password-creator
- Owner: xsismadn3ss
- Created: 2025-02-12T18:51:12.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-02-25T16:18:59.000Z (3 months ago)
- Last Synced: 2025-02-25T17:28:25.098Z (3 months ago)
- Language: Python
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PASSWORD CREATOR
Use this cli to create random password or create a custom one. The output is the password hash in `SHA256` algorithm.
## CONFIGURE ENVIRONMENT
It is recommended to have Python installed and to create a virtual environment to install the dependencies so that they are not installed globally.
**Create a virtual environment:**
```python
python -m venv .venv
```**Activate environment:**
```CMD
.venv/Scripts/activate
```**Install dependencies**
```CMD
pip install -r requirements.txt
```## CREATE .EXE
**Install `pyinstaller` package:**
```
pip install pyinstaller
```**Build CLI:**
```CMD
pyinstaller --ondedir --console .\cli.py
```The created executable will be placed inside a folder called `dist`. To run it in the console, you should do the following:
```CMD
.\dist\cli\cli.exe
```