Metadata-Version: 2.1
Name: einar
Version: 0.0.1
Summary: Python3 password manager library.
Author-email: Juan Bindez <juanbindez780@gmail.com>
License: GPLv2 license
Project-URL: Homepage, https://github.com/juanbindez/einar
Project-URL: Bug Reports, https://github.com/juanbindez/einar/issues
Project-URL: Read the Docs, http://einar.readthedocs.io/
Keywords: password,manager,tools,cli,pass
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python
Classifier: Topic :: Internet
Classifier: Topic :: Multimedia :: Video
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Terminals
Classifier: Topic :: Utilities
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: cryptography

# 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 <your_master_password>

# Add Password
einar -a <service> <username> <password> <your_master_password>

# View Passwords
einar -v <your_master_password>

# Delete Password
einar -d <service> <your_master_password>

```
