Metadata-Version: 1.1
Name: pyKeyring
Version: 0.2
Summary: A simple and secure tool to store passwords
Home-page: https://github.com/gabrielperes97/pyKeyring
Author: Gabriel Leopoldino
Author-email: gabrielperes97@gmail.com
License: MIT
Description: ==========
        pyKeyring
        ==========
        
        A simple and secure tool to store passwords
        
        Introdution 
        ***********
        
        pyKeyring is a tool to store encrypted passwords in a simple database file. 
        
        Usage
        ***********
        
        pyKeyring is much simple to use.
        
        Create a database
        ==================
        .. code-block:: console
        
            foo@bar:~$ keyring -f /path/to/keyring.db create
            
        The default database file is named keyring.db. If you don't use the -f argument, pyKeyring will use this name. 
        
        Insert a password
        ==================
        .. code-block:: console
        
            foo@bar:~$ keyring add password_label
        
        The password_label is used to label your password :)
        
        Get a password
        ==============
        .. code-block:: console
        
            foo@bar:~$ keyring get password_label
        
        
        If you don't want to print the password in the terminal you can use the argument -c to copy the password to clipboard.
        
        .. code-block:: console
        
            foo@bar:~$ keyring get -c password_label
        
        Update a password
        =================
        .. code-block:: console
        
            foo@bar:~$ keyring update password_label
        
        
        Remove a password
        ==================
        .. code-block:: console
        
            foo@bar:~$ keyring remove password_label
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Security
Classifier: Topic :: Security :: Cryptography
Classifier: Topic :: Utilities
