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