Metadata-Version: 2.1
Name: RockyRoad
Version: 0.0.16
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:

    Usage Example:

        from rockyroad.rockyroad import RockyRoad

        rr = RockyRoad(base_url='INSERT_URL_FOR_API')

        api_response = rr.get_hello_world()
        print(api_response)

        api_response = rr.get_alert_requests()
        print(api_response)

        api_response = rr.get_alert_requests_by_creator_email('user@acme.com')
        print(api_response)

        api_response = rr.add_alert_request(new_alert_request_json)
        print(api_response)

        api_response = rr.delete_alert_request(brand, alert_request_id)
        print(api_response)

        api_response = rr.get_alert_reports()
        print(api_response)

        api_response = rr.get_alert_reports_by_creator_email('user@acme.com')
        print(api_response)



