Metadata-Version: 2.1
Name: ringcentral-engage-digital
Version: 0.2.0
Summary: RingCentral Engage Digital client Python
Home-page: https://github.com/ringcentral/engage-digital-client-python
Author: Drake Zhao @ RingCentral
Author-email: drake.zhao@ringcentral.com
License: UNKNOWN
Description: # [RingCentral Engage Digital Client for Python](https://github.com/ringcentral/engage-digital-client-python)
        
        Simple Python API wrapper for RingCentral Engage Digital api. [api docs](https://engage-api-docs.readthedocs.io/).
        
        [![Build Status](https://travis-ci.org/ringcentral/engage-digital-client-python.svg?branch=test)](https://travis-ci.org/ringcentral/engage-digital-client-python)
        
        ## Usage
        
        ```python
        from ringcentral_engage_digital import RestClient
        
        rc = RestClient(
          RINGCENTRAL_ENGAGE_API_TOKEN,
          RINGCENTRAL_ENGAGE_SERVER_URL
        )
        r = rc.get('/1.0/roles')
        assertEqual(len(r.json['records']) > 0, True)
        ```
        
        ## Test
        
        ```bash
        bin/init
        source venv/bin/activate
        cp .sample.env .env
        # edit .env fill your server and spi key
        npm run test
        ```
        
        ## Credits
        
        Based on [Tyler](https://github.com/tylerlong)'s [https://github.com/tylerlong/ringcentral-python](https://github.com/tylerlong/ringcentral-python).
        
        ## License
        
        MIT
        
Keywords: RingCentral,Engage Digital,sdk
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 2
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
