Metadata-Version: 2.1
Name: robotframework-keepasslibrary
Version: 0.1.0
Summary: Robot Framework library for working with KeePass Database
Home-page: https://github.com/loomanw/robotframework-keepasslibrary
Author: William Looman
Author-email: wlooman@gmail.com
License: UNKNOWN
Description: # KeePass Library
        
        This library enables Robot Framework to interact with KeePass databases.
        
        Supported KeePass versions:
        - KDBX3
        - KDBX4
            
        KeepassLibrary uses the [PyKeePass](https://pypi.org/project/pykeepass/) modules internally to access KeePass databases
            
        See https://keepass.info for more information about KeePass in general
        
        ----
        ### Versions:
        
        0.1.0   Alpha
        ---
        
        ### Installation
        The recommended approach to install KeePassLibrary, regardless the version, is using  [pip](http://pip-installer.org/).
        
        Install (or upgrade) the latest KeePassLibrary version:
        
            pip install --upgrade robotframework-keepasslibrary
        
        ---
        ### Example
        
        ```robotframework
        *** Settings ***
        Documentation     A test suite with a single test for retrieving a password.
        ...
        ...               The test loads a KeePass database named example.kbx using 
        ...               the keyfile example.key. 
        ...               It then retrieves the first entry that matches the Username spam_user
        ...               and logs the password from the returned KeePass database entry
        Import            KeePassLibrary
        
        *** Test Cases ***
        Get KeePass Database Entry
            Get KeePass Database       Database.kdbx    keyfile=Database.key        
            ${entry}=	Get Entries By Username    User Name    first=True	
        	Log 	Password for spam_user is ${entry.password}
        ```
        
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License  
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Security :: Cryptography  
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: Topic :: Software Development :: Testing
Classifier: Framework :: Robot Framework
Classifier: Framework :: Robot Framework :: Library
Description-Content-Type: text/markdown
