Metadata-Version: 1.1
Name: pyark
Version: 1.2.0
Summary: Pyark is a small python-based CLI tool, which allows you to interact with the CyberArk Enterprise Password Vault API.
Home-page: https://github.com/adfinis-sygroup/pyark
Author: Adfinis SyGroup AG
Author-email: info@adfinis-sygroup.ch
License: UNKNOWN
Description: =====
        Pyark
        =====
        
        |Travis| |PyPi| |License|
        
        .. |Travis| image:: https://img.shields.io/travis/adfinis-sygroup/pyark.svg?style=flat-square
           :target: https://travis-ci.org/adfinis-sygroup/pyark
        .. |PyPi| image:: https://img.shields.io/pypi/v/pyark.svg?style=flat-square
           :target: https://pypi.python.org/pypi/pyark
        .. |License| image:: https://img.shields.io/github/license/adfinis-sygroup/pyark.svg?style=flat-square
           :target: LICENSE
        
        Pyark is a small python-based CLI tool, which allows you to interact with the
        CyberArk Enterprise Password Vault API.
        
        Features
        ========
        Currently the following functionalities are supported:
        
        * Get accounts
        * Create accounts
        * Delete accounts
        
        Supported authentication methods:
        
        * CyberArk accounts (default)
        * RADIUS
        
        Requirements
        ============
        Make sure to have the following Python 3 dependencies installed before using the
        tool:
        
        * python-requests
        
        Furthermore it's important to know which version of the CyberArk Password Vault
        is used as only the newest versions expose all API endpoints. Make sure to
        double check the API documentation, specific for your version, in case the tool
        fails to interact with the API.
        
        Installation
        ============
        Simply clone this repository and start using the script. You can also install
        it using setup.py or pip.
        
        Examples
        ========
        Get a list of available accounts:
        
        .. code:: shell
        
           $ pyark --base https://vault.example.com \
                   --apiuser foobar                 \
                   --apipassword supersecret42      \
                   account get                      \
                   --safe MySafe                    \
                   --keywords bruce
        
        Create a new account:
         
        .. code:: shell
        
           $ pyark --base https://vault.example.com \
                   --apiuser foobar                 \
                   --apipassword supersecret42      \
                   account create                   \
                   --safe MySafe                    \
                   --platformid TestPlatform        \
                   --accountname brucewayne         \
                   --address batcave.example.com    \
                   --username brucew                \
                   --password d4rkkn1ght
        
        Delete an existing account:
         
        .. code:: shell
        
           $ pyark --base https://vault.example.com \
                   --apiuser foobar                 \
                   --apipassword supersecret42      \
                   account delete                   \
                   --safe MySafe                    \
                   --accountname brucewayne         \
                   --keywords bruce
        
        Contributions
        =============
        Contributions are more than welcome! Please feel free to open new issues or
        pull requests.
        
        License 
        =======
        GNU GENERAL PUBLIC LICENSE Version 3
        
        See the `LICENSE`_ file.
        
        .. _LICENSE: LICENSE
        
Keywords: CyberArk,Password Vault,API,CLI
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: System :: Systems Administration :: Authentication/Directory
