Skip to main content

Python3 password manager library.

Project description

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.

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:

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

einar-0.0.1.tar.gz (11.3 kB view hashes)

Uploaded Source

Built Distribution

einar-0.0.1-py3-none-any.whl (12.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page