Metadata-Version: 1.1
Name: ahqapiclient
Version: 0.7.1
Summary: AbuseHQ API Client
Home-page: https://www.abusix.com/
Author: Frederik Petersen
Author-email: fp@abusix.com
License: UNKNOWN
Description: # AbuseHQ API Client
        
        ## About
        **ahqapiclient** is a library which reflects the AbuseHQ API on client side.
        
        ## Usage
        
        import Client from ahqapiclient
        
        ### Setup
        
        endpoint = {
          "auth_method": "HMAC",
          "auth_options": {
            "key": "zwz5si71w3k4ftqkwlf1mhm84rjb13ke88xvixlf",
            "user": "user"
          },
          "name": "INTERNAL",
          "url": "https://yourcompany.abusehq.net/api/v1"
        }
        
        api_client = Client(endpoint)
        
        ### Usage
        
        #### Get a case
        case = api_client.case.get_case('case_id')
        
        #### Perform a transition
        
        api_client.case.trigger_transition('case_id', 'transition_id')
        
Keywords: abusehq api client
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP
