Metadata-Version: 2.1
Name: orpy
Version: 1.0.2
Summary: Python library and CLI for the INDIGO PaaS Orchestrator.
Home-page: https://github.com/indigo-dc/orpy
Author: Alvaro Lopez Garcia
Author-email: aloga@ifca.unican.es
License: Apache-2
Project-URL: Bug Tracker, https://github.com/indigo-dc/orpy/issues
Project-URL: Documentation, https://orpy.readthedocs.io/
Description: # orpy
        
        Python library and CLI for the INDIGO PaaS Orchestrator.
        
        <img src="https://marketplace.deep-hybrid-datacloud.eu/images/logo-deep.png" width=200 alt="DEEP-Hybrid-DataCloud logo"/>
        
        * Free software: Apache License 2.0
        * Source: https://github.com/indigo-dc/orpy
        * Documentation: https://orpy.readthedocs.io/
        * Bugs: https://github.com/indigo-dc/orpy/issues
        
        ## Installation.
        
        You can install it directly from PyPI:
        
            pip install orpy
        
        ## Usage as CLI
        
        Before using the orchestrator with orpy you need to export your IAM access
        token. As long as the access token is valid orchent can tell the orchestrator
        what to do.
        
            export ORCHESTRATOR_TOKEN=<your access token here>
        
        Please check the [documentation](https://docs.deep-hybrid-datacloud.eu/projects/orpy/en/stable/user/shell.html)
        for more details on how to set the credentials.
        
        Then, the usage is as follows:
        
            usage: orpy [--version] [-v | -q] [--log-file LOG_FILE] [-h] [--debug]
                       [--url <orchestrator-url>]
        
            Command line client for the INDIGO PaaS Orchestrator.
        
                Please, before using this command put your a valid OpenID Connnect access
                token into the ORCHESTRATOR_TOKEN environment variable, so that we can use
                this token for authentication.
        
        
            optional arguments:
              --version             show program's version number and exit
              -v, --verbose         Increase verbosity of output. Can be repeated.
              -q, --quiet           Suppress output except warnings and errors.
              --log-file LOG_FILE   Specify a file to log output. Disabled by default.
              -h, --help            Show help message and exit.
              --debug               Show tracebacks on errors.
              --url <orchestrator-url>
                                    The base url of the orchestrator rest interface.
                                    Alternative the environment variable ORCHESTRATOR_URL
                                    can be used.
        
            Commands:
              complete       print bash completion command (cliff)
              dep create     Create a deployment.
              dep delete     Show details about an existing deployment.
              dep list       List existing deployments at orchestrator.
              dep show       Show details about an existing deployment.
              dep template   Get template used for a given deployment.
              dep update     Update an existing deployment.
              deployment create  Create a deployment.
              deployment delete  Show details about an existing deployment.
              deployment list  List existing deployments at orchestrator.
              deployment show  Show details about an existing deployment.
              deployment template  Get template used for a given deployment.
              deployment update  Update an existing deployment.
              help           print detailed help for another command (cliff)
              resources list  List Resources for a given deployment.
              resources show  Show details about a resource for a given deployment.
              test           Test if the given URL is pointing to an orchestrator.
        
        ## Usage as API
        
        Besides being a CLI application, `orpy` can be used as a library:
        
            >>> from orpy.client import client
            >>> orpy = client.OrpyClient(
            ...     url=ORCHESTRATOR_URL,
            ...     token=ORCHESTRATOR_TOKEN)
            >>> deployments = orpy.deployments.list()
            >>> deployments[0]
            <Deployment cloudProviderName=provider-BARI, createdBy={u'subject': u'de28e179-ec86-4915-a748-7a37f8d80311', u'issuer': u'https://iam.deep-hybrid-datacloud.eu/'}, creationTime=2019-05-27T11:31+0000, links=[{u'href': u'https://paas.cloud.cnaf.infn.it/orchestrator/deployments/11e98073-06f3-6797-9258-0242ac140005', u'rel': u'self'}, {u'href': u'https://paas.cloud.cnaf.infn.it/orchestrator/deployments/11e98073-06f3-6797-9258-0242ac140005/resources', u'rel': u'resources'}, {u'href': u'https://paas.cloud.cnaf.infn.it/orchestrator/deployments/11e98073-06f3-6797-9258-0242ac140005/template', u'rel': u'template'}], outputs={}, physicalId=11e98073-06f3-6797-9258-0242ac140005, status=CREATE_FAILED, statusReason=Error while checking the deployment status; nested exception is feign.RetryableException: mesos.ui.sav.sk executing GET https://mesos.ui.sav.sk/marathon/v2/groups/11e98073-06f3-6797-9258-0242ac140005, task=NONE, updateTime=2019-05-29T02:05+0000, uuid=11e98073-06f3-6797-9258-0242ac140005>
            >>> deployments[0].status
            CREATE_FAILED
            >>>
        
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Internet :: WWW/HTTP
Requires-Python: >=3.6
Description-Content-Type: text/markdown; charset=UTF-8
