11 lines
190 B
Python
11 lines
190 B
Python
|
from urllib3 import PoolManager
|
||
|
|
||
|
|
||
|
_http: PoolManager | None = None
|
||
|
|
||
|
def get_http_pool() -> PoolManager:
|
||
|
global _http
|
||
|
if _http is None:
|
||
|
_http = PoolManager()
|
||
|
return _http
|