Metadata-Version: 2.0
Name: renga
Version: 0.1.0.dev20170922
Summary: Python SDK and CLI for the Renga platform.
Home-page: https://github.com/SwissDataScienceCenter/renga-python
Author: Swiss Data Science Center
Author-email: contact@datascience.ch
License: Apache License 2.0
Description-Content-Type: UNKNOWN
Keywords: Renga CLI
Platform: any
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Development Status :: 1 - Planning
Requires-Dist: PyYAML (>=3.12)
Requires-Dist: click (>=6.7)
Requires-Dist: click-plugins (>=1.0.3)
Requires-Dist: requests (>=2.18.4)
Requires-Dist: requests-oauthlib (>=0.8.0)
Requires-Dist: tabulate (>=0.7.7)
Requires-Dist: werkzeug (>=0.12)
Requires-Dist: pathlib2 (>=2.3.0); python_version<"3.6"
Provides-Extra: all
Requires-Dist: Sphinx (>=1.6.3); extra == 'all'
Requires-Dist: Sphinx (>=1.6.3); extra == 'all'
Requires-Dist: check-manifest (>=0.25); extra == 'all'
Requires-Dist: check-manifest (>=0.25); extra == 'all'
Requires-Dist: coverage (>=4.0); extra == 'all'
Requires-Dist: coverage (>=4.0); extra == 'all'
Requires-Dist: isort (>=4.2.2); extra == 'all'
Requires-Dist: isort (>=4.2.2); extra == 'all'
Requires-Dist: pydocstyle (>=1.0.0); extra == 'all'
Requires-Dist: pydocstyle (>=1.0.0); extra == 'all'
Requires-Dist: pytest (>=3.2.1); extra == 'all'
Requires-Dist: pytest (>=3.2.1); extra == 'all'
Requires-Dist: pytest-cache (>=1.0); extra == 'all'
Requires-Dist: pytest-cache (>=1.0); extra == 'all'
Requires-Dist: pytest-cov (>=2.5.1); extra == 'all'
Requires-Dist: pytest-cov (>=2.5.1); extra == 'all'
Requires-Dist: pytest-pep8 (>=1.0.6); extra == 'all'
Requires-Dist: pytest-pep8 (>=1.0.6); extra == 'all'
Requires-Dist: renga-sphinx-theme (>=0.1.0); extra == 'all'
Requires-Dist: renga-sphinx-theme (>=0.1.0); extra == 'all'
Requires-Dist: responses (>=0.7.0); extra == 'all'
Requires-Dist: responses (>=0.7.0); extra == 'all'
Provides-Extra: docs
Requires-Dist: Sphinx (>=1.6.3); extra == 'docs'
Provides-Extra: tests
Requires-Dist: check-manifest (>=0.25); extra == 'tests'
Requires-Dist: coverage (>=4.0); extra == 'tests'
Requires-Dist: isort (>=4.2.2); extra == 'tests'
Requires-Dist: pydocstyle (>=1.0.0); extra == 'tests'
Requires-Dist: pytest (>=3.2.1); extra == 'tests'
Requires-Dist: pytest-cache (>=1.0); extra == 'tests'
Requires-Dist: pytest-cov (>=2.5.1); extra == 'tests'
Requires-Dist: pytest-pep8 (>=1.0.6); extra == 'tests'
Requires-Dist: renga-sphinx-theme (>=0.1.0); extra == 'tests'
Requires-Dist: responses (>=0.7.0); extra == 'tests'

..
    Copyright 2017 - Swiss Data Science Center (SDSC)
    A partnership between École Polytechnique Fédérale de Lausanne (EPFL) and
    Eidgenössische Technische Hochschule Zürich (ETHZ).

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

        http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.

==============================
 Renga CLI and SDK for Python
==============================

.. image:: https://img.shields.io/travis/SwissDataScienceCenter/renga-python.svg
   :target: https://travis-ci.org/SwissDataScienceCenter/renga-python

.. image:: https://img.shields.io/coveralls/SwissDataScienceCenter/renga-python.svg
   :target: https://coveralls.io/r/SwissDataScienceCenter/renga-python

.. image:: https://img.shields.io/github/tag/SwissDataScienceCenter/renga-python.svg
   :target: https://github.com/SwissDataScienceCenter/renga-python/releases

.. image:: https://img.shields.io/pypi/dm/renga.svg
   :target: https://pypi.python.org/pypi/renga

.. image:: http://readthedocs.org/projects/renga-python/badge/?version=latest
   :target: http://renga-python.readthedocs.io/en/latest/?badge=latest
   :alt: Documentation Status

.. image:: https://img.shields.io/github/license/SwissDataScienceCenter/renga-python.svg
        :target: https://github.com/SwissDataScienceCenter/renga-python/blob/master/LICENSE

A Python library for the `Renga collaborative data science platform
<https://github.com/SwissDataScienceCenter/renga>`_. It lets you perform any action with
``renga`` command or from withing Python apps - create projects, manage
buckets, track files, run containers, etc.

**This is an experimental developer preview release.**

Installation
------------

The latest release is available on PyPI and can be installed using
``pip``:

::

    $ pip install renga

The development version can be installed directly from the Git repository:

::

    $ pip install -e git+https://github.com/SwissDataScienceCenter/renga-python.git#egg=renga


Usage
-----

Start by login and configuring your shell:

::

   $ renga login http://localhost

Connect to Renga platform from Python using the stored configuration:

::

    import renga
    client = renga.from_config()

The client can be also instantiated from environment variables.

::

   $ eval "$(renga env)"

::

   import renga
   client = renga.from_env()


Further documentation is available on
https://renga-python.readthedocs.io/


..
    Copyright 2017 - Swiss Data Science Center (SDSC)
    A partnership between École Polytechnique Fédérale de Lausanne (EPFL) and
    Eidgenössische Technische Hochschule Zürich (ETHZ).

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

        http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.

Changes
=======

Version 0.1.0 (released TBD)

- Initial public release.


