simple-password-manager 0.0.4

Creator: bradpython12

Last updated:

0 purchases

TODO
Add to Cart

Description:

simplepasswordmanager 0.0.4

Simple Password Manager


Overview
Simple Password Manager is a lightweight and secure Python package for managing passwords. It allows users to store, retrieve, and manage their passwords securely using encryption with a single master password. It supports two types of storage: local storage and cloud storage. The package provides a command-line interface (CLI) for easy management of passwords.
Features

Encryption: All passwords are encrypted using a master password.
Secure Storage: Passwords are stored in a secure format locally or in the cloud.
Command-Line Interface: Easy to use CLI for managing passwords.
Custom Password Generation: Generate secure passwords on the fly.
Log and Backup System: Keeps track of changes and allows for easy backup.

Installation
Install the package using pip:
pip install simple-password-manager

Usage
Command-Line Interface (CLI)
The Simple Password Manager can be used directly from the command line with the following commands:


Start in Online or Offline Mode:

For online use, where your passwords are stored securely in the cloud:
spm mode -o


For offline use, where your passwords are stored locally:
spm mode -f





Create an Account:

Once the mode is selected, sign up by creating an account:
spm signup <username>





Manage Your Passwords:

After creating an account, you can begin managing your passwords with the following commands:

Add a new password:
spm add <service> <username>


Retrieve a password:
spm get <service>


Update an existing password:
spm update <service>


Delete a password:
spm delete <service>







Python Integration
You can also use Simple Password Manager directly in your Python code:
from simplepasswordmanager import Manager, OfflineManager, OnlineManager

# Initialize the manager
manager = Manager(master_password="your_master_password")

# Example usage:
manager.add_password("gmail", "your_email@gmail.com", "your_password")
password = manager.get_password("gmail")
print(f"Retrieved password: {password}")

Notes

If you have your own solution to store your passwords on the cloud, you can modify where the package stores your passwords online by updating the settings in setting.py.

License
This project is licensed under the MIT License. See the LICENSE file for more details.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.

Related Products

More From This Creator