Session
            thehive4py.session
    
            DEFAULT_RETRY = Retry(total=5, backoff_factor=1, status_forcelist=[500, 502, 503, 504], allowed_methods=['GET', 'POST', 'PUT', 'PATCH', 'DELETE'], raise_on_status=False)
  
      module-attribute
  
    
            RetryValue = Union[Retry, int, None]
  
      module-attribute
  
    
            VerifyValue = Union[bool, str]
  
      module-attribute
  
    
              TheHiveSession(url, apikey=None, username=None, password=None, verify=True, max_retries=DEFAULT_RETRY)
    
              Bases: Session
Source code in thehive4py/session.py
                    37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61  |  | 
            hive_url = self._sanitize_hive_url(url)
  
      instance-attribute
  
    
            verify = verify
  
      instance-attribute
  
    
            make_request(method, path, params=None, data=None, json=None, files=None, download_path=None)
    Source code in thehive4py/session.py
              75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103  |  |