4
4
5
5
from __future__ import absolute_import
6
6
7
+ { {#asyncio} }
8
+ import aiohttp
9
+ { {/asyncio} }
7
10
import copy
8
11
import logging
12
+ { {^asyncio} }{ {^tornado} }
9
13
import multiprocessing
14
+ { {/asyncio} }{ {/tornado} }
10
15
import sys
16
+ { {^asyncio} }
11
17
import urllib3
18
+ { {/asyncio} }
19
+
12
20
13
21
import six
14
22
from six.moves import http_client as httplib
@@ -60,7 +68,12 @@ class Configuration(six.with_metaclass(TypeWithDefault, object)):
60
68
# Logging Settings
61
69
self.logger = { }
62
70
self.logger["package_logger"] = logging.getLogger("{ {packageName} }")
71
+ { {#asyncio} }
72
+ self.logger["aiohttp"] = logging.getLogger("aiohttp.client")
73
+ { {/asyncio} }
74
+ { {^asyncio} }
63
75
self.logger["urllib3_logger"] = logging.getLogger("urllib3")
76
+ { {/asyncio} }
64
77
# Log format
65
78
self.logger_format = '%(asctime)s %(levelname)s %(message)s'
66
79
# Log stream handler
@@ -84,14 +97,14 @@ class Configuration(six.with_metaclass(TypeWithDefault, object)):
84
97
self.key_file = None
85
98
# Set this to True/False to enable/disable SSL hostname verification.
86
99
self.assert_hostname = None
87
-
100
+ { {^asyncio } } { {^tornado } }
88
101
# urllib3 connection pool's maximum number of connections saved
89
102
# per pool. urllib3 uses 1 connection as default value, but this is
90
103
# not the best value when you are making a lot of possibly parallel
91
104
# requests to the same host, which is often the case here.
92
105
# cpu_count * 5 is used as default value to increase performance.
93
106
self.connection_pool_maxsize = multiprocessing.cpu_count() * 5
94
-
107
+ { {/tornado } } { {/asyncio } }
95
108
# Proxy URL
96
109
self.proxy = None
97
110
# Safe chars for path_param
@@ -193,14 +206,14 @@ class Configuration(six.with_metaclass(TypeWithDefault, object)):
193
206
self.__logger_format = value
194
207
self.logger_formatter = logging.Formatter(self.__logger_format)
195
208
196
- def get_api_key_with_prefix(self, identifier):
209
+ { {#asyncio } }async { {/asyncio } } def get_api_key_with_prefix(self, identifier):
197
210
"""Gets API key (with prefix if set).
198
211
199
212
:param identifier: The identifier of apiKey.
200
213
:return: The token for api key authentication.
201
214
"""
202
215
if self.refresh_api_key_hook:
203
- self.refresh_api_key_hook(self)
216
+ { {#asyncio } }await { {/asyncio } } self.refresh_api_key_hook(self)
204
217
205
218
key = self.api_key.get(identifier)
206
219
if key:
@@ -217,12 +230,18 @@ class Configuration(six.with_metaclass(TypeWithDefault, object)):
217
230
"""
218
231
token = ""
219
232
if self.username or self.password:
233
+ { {#asyncio} }
234
+ token = aiohttp.BasicAuth(
235
+ self.username, self.password).encode()
236
+ { {/asyncio} }
237
+ { {^asyncio} }
220
238
token = urllib3.util.make_headers(
221
239
basic_auth=self.username + ':' + self.password
222
240
).get('authorization')
241
+ { {/asyncio} }
223
242
return token
224
243
225
- def auth_settings(self):
244
+ { {#asyncio } }async { {/asyncio } } def auth_settings(self):
226
245
"""Gets Auth Settings dict for api client.
227
246
228
247
:return: The Auth Settings information dict.
@@ -235,7 +254,7 @@ class Configuration(six.with_metaclass(TypeWithDefault, object)):
235
254
' type' : ' api_key' ,
236
255
' in' : {{#isKeyInHeader} }'header'{ {/isKeyInHeader} }{ {#isKeyInQuery} }'query'{ {/isKeyInQuery} },
237
256
'key': '{ {keyParamName} }',
238
- 'value': self.get_api_key_with_prefix('{ {keyParamName} }')
257
+ 'value': { {#asyncio } }await { {/asyncio } } self.get_api_key_with_prefix('{ {keyParamName} }')
239
258
},
240
259
{ {/isApiKey} }
241
260
{ {#isBasic} }
0 commit comments