Metadata-Version: 2.1
Name: rubrik-cdm
Version: 2.0.7
Summary: A Python package for interacting with the Rubrik CDM API.
Home-page: https://github.com/rubrik-devops/rubrik-sdk-for-python
Author: Rubrik Build
License: UNKNOWN
Description: 
        # Rubrik SDK for Python
        
        This project provides a Python package that makes it easy to interact with the Rubrik CDM API.
        
        The SDK has been tested against Python 2.7.6 and Python 3.6.4.
        
        ## Installation
        
        Install from pip:
        
        `pip install rubrik_cdm`
        
        Install from source:
        ```
        $ git clone https://github.com/rubrik-devops/rubrik-sdk-for-python
        $ cd rubrik-sdk-for-python
        $ python setup.py install
        ```
        ## Quick Start
        
        * [Quick Start Guide](https://github.com/rubrikinc/rubrik-sdk-for-python/blob/master/docs/quick-start.md)
        
        ## Documentation
        
        * [SDK Documentation](https://rubrik.gitbook.io/rubrik-sdk-for-python/)
        * [Rubrik API Documentation](https://github.com/rubrikinc/api-documentation)
        
        ## Example
        
        By default, the Rubrik SDK will attempt to read the the Rubrik Cluster credentials from the following environment variables:
        
        * `rubrik_cdm_node_ip`
        * `rubrik_cdm_username`
        * `rubrik_cdm_password`
        * `rubrik_cdm_token`
        
        | Note: The `rubrik_cdm_username` and `rubrik_cdm_password` must be supplied together and may not be provided if the `rubrik_cdm_token` variable is present|
        | --- |
        
        ```py
        import rubrik_cdm
        rubrik = rubrik_cdm.Connect()
        
        cluster_version = rubrik.cluster_version()
        
        print(cluster_version)
        ```
        
        ## Additional Links
        * [VIDEO: Getting Start with the Rubrik SDK for Python](https://www.youtube.com/watch?v=TQM60X2_r_c&feature=youtu.be)
        
Platform: UNKNOWN
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
