Lima-Codes
Results
1
comments of
Lima-Codes
#### Proposed fix in the http module ~~~python import certifi import urllib3 from urllib import parse class Http(): def __init__(self): user_agent = {'User-Agent': 'Mozilla/5.0'} self.http = urllib3.PoolManager( timeout=urllib3.Timeout(connect=1.0, read=2.0), cert_reqs='CERT_REQUIRED',...