Metadata-Version: 2.1
Name: pysafe
Version: 0.2.0
Summary: Python password manger
Home-page: https://github.com/MNKanout/Pysafe
Author: MNKANOUT
Author-email: mnkanout@gmail.com
License: UNKNOWN
Description: Pysafe is a terminal-based password manager with a very easy to use CLI.
        ### Features:
        * Generate a unique encryption key to be used as a master password.
        * Generate new passwords for new login entries.
        * Encrypt all saved password using the generated encryption key.
        * Show all your saved login credentials with a click of button.
        * A ready to export CSV file for an easy backup experience.
        * Master reset to delete saved encryption key and all saved login entries.
        ### How to install:
        #### On mac:
        
        Open terminal and type:
        
        ``python3 pip install pysafe``
        
        
        #### On windows:
        Open Powershell and type
        
        ``python3 pip install pysafe``
        
        
        ### How to use:
        
        #### On mac:
        
        Open terminal and type
        
        ``Python3 ``
        
        ``Import pysafe``
        
        #### On Windows:
        Open CMD and type
        
        ``python3``
        
        ``import pysafe``
        
        ### General usage:
        * Generate a new encryption key:
        You only need to do this once. Save your encryption key somewhere safe as
         this will be used as your master password.
         
         Note: Encrypted credentials are linked to the generated encryption key
         . Avoid generating a new key with existing login credentials as this would
          result in
          losing the ability to decrypt your saved login credentials.
        * Use previous encryption key:
        Here you can use previously generated encryption key. The encryption key is 44
         character. 
        * Save a new login:
        After saving your encryption key, you can enter as many login entries as you so
         desire
         with the ability to generate new passwords along the way, or just enter a
          password of your
          choosing. Then the program will save it for you in CSV file. The passwords
           in that CSV file will be encrypted, and can only be seen using the generated
            encryption key that we mentioned earlier.
            
        *  Show saved logins:
        The program will print out the saved logins using the saved encryption key
         and saved CSV file, so you can see them in plain text that you can use.
         
        * Generate a new password:
        This will give your the ability to generate a new password without having an
         encryption key or entering any additional information such as a website tile
          or website link. You only need to enter the length of the password and the
           program will do the rest.
        * Show locations of saved files:
        This will show you the absolute path of the generated files by the program
        * Delete all data:
        This will be used in case you wish to have a fresh start without any
         encryption key nor login credentials file file.
        
        Note: This will permanently delete your encryption key and saved login
         credentials. So only do that, if you know what you are doing.
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: Natural Language :: English
Requires-Python: >=3.7
Description-Content-Type: text/markdown
