Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/juanbindez/einar
Python3 Library to Manage Passwords
https://github.com/juanbindez/einar
Last synced: 3 days ago
JSON representation
Python3 Library to Manage Passwords
- Host: GitHub
- URL: https://github.com/juanbindez/einar
- Owner: JuanBindez
- License: gpl-2.0
- Created: 2024-10-20T19:04:03.000Z (25 days ago)
- Default Branch: main
- Last Pushed: 2024-10-21T19:36:44.000Z (24 days ago)
- Last Synced: 2024-10-22T03:58:10.942Z (24 days ago)
- Language: Python
- Homepage:
- Size: 30.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Einar
## Python3 Password Manager Library.
### Usage
Importing EinarManager in Your Script
You can create a Python script to use the EinarManager class. Below is an example of how to import and use it.
```python
from einar import EinarManager
# Create an instance of EinarManager
manager = EinarManager()# Set the master password
manager.set_master_password('your_master_password')# Add a password entry
manager.add_password('example_service', 'username', 'password123')# View stored passwords
passwords = manager.view_passwords('your_master_password')
print(passwords)# Delete a password entry
manager.delete_password('example_service', 'your_master_password')```
### Command-Line Interface (CLI) Usage
You can use the following commands in the terminal to interact with Einar:
```bash
# Set Master Password
einar -s# Add Password
einar -a# View Passwords
einar -v# Delete Password
einar -d```