Metadata-Version: 2.1
Name: RockyRoad
Version: 0.0.19
Summary: Python wrapper for the RockyRoad API
Home-page: https://github.com/pypa/sampleproject
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/pypa/sampleproject/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: uplink

# RockyRoad

This package provides a Python wrapper for the RockyRoad API.

RockyRoad is a part of the PyPi repository and can be installed via

    pip install RockyRoad

    export OCP_APIM_SUBSCRIPTION_KEY="INSERT_YOUR_SUBSCRIPTION_KEY"


Usage Example:

        from rockyroad.rockyroad import build

        service = build(base_url='INSERT_URL_FOR_API')

        api_response = service.helloWorld().list()
        print(api_response)

        api_response = service.alertRequests().list()
        print(api_response)

        api_response = service.alertRequests().list(creator_email='user@acme.com')
        print(api_response)

        api_response = service.alertRequests().insert(new_alert_request_json)
        print(api_response)

        api_response = service.alertRequests().delete(brand=brand, alert_request_id=alert_request_id)
        print(api_response)

        api_response = service.alertReports().list()
        print(api_response)

        api_response = service.alertReports().list(creator_email='user@acme.com')
        print(api_response)

        api_response = service.utilData().list(brand=brand, time_period='today')
        print(api_response)

        api_response = service.utilStats().list()
        print(api_response)

        api_response = service.dealers().list()
        print(api_response)

        api_response = service.customers().list(dealer_name=dealer_name)
        print(api_response)



