brynq-sdk-imanage 1.0.4__tar.gz → 1.0.5__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.0
2
2
  Name: brynq_sdk_imanage
3
- Version: 1.0.4
3
+ Version: 1.0.5
4
4
  Summary: Imanage wrapper from BrynQ
5
5
  Home-page: UNKNOWN
6
6
  Author: BrynQ
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.0
2
2
  Name: brynq-sdk-imanage
3
- Version: 1.0.4
3
+ Version: 1.0.5
4
4
  Summary: Imanage wrapper from BrynQ
5
5
  Home-page: UNKNOWN
6
6
  Author: BrynQ
@@ -2,7 +2,7 @@ from setuptools import setup, find_namespace_packages
2
2
 
3
3
  setup(
4
4
  name='brynq_sdk_imanage',
5
- version='1.0.4',
5
+ version='1.0.5',
6
6
  description='Imanage wrapper from BrynQ',
7
7
  long_description='Imanage wrapper from BrynQ',
8
8
  author='BrynQ',
@@ -10,12 +10,12 @@ import requests
10
10
  class IManage(BrynQ):
11
11
  def __init__(self, interface_id:str,system_type:str='source', debug: bool = False):
12
12
  super().__init__()
13
+ self.timeout = 3600
13
14
  self.debug = debug
14
15
  self.credentials = self.interfaces.credentials.get(interface_id=interface_id, system='i-manage-oauth', system_type=system_type)
15
16
  self.customer_name = self.subdomain.lower()
16
17
  self.imanage_url = f'https://cloudimanage.com'
17
18
  self.customer_id, self.customer_url = self._get_customer_id_and_url()
18
- self.timeout = 3600
19
19
 
20
20
 
21
21
  def __get_headers(self):