Metadata-Version: 1.1
Name: ahqapiclient
Version: 0.7.7
Summary: AbuseHQ API Client
Home-page: https://www.abusix.com/
Author: Frederik Petersen
Author-email: fp@abusix.com
License: UNKNOWN
Description: # DEPRECATED! Please use the information at https://[yourname].abusehq.net/api/v1/docs/ and use an http client of your liking for accessing the API directly
        
        # 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": "JWT",
          "auth_options": {
            "token": "<YOUR_API_KEY>"
          },
          "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
