(url)
| 51 | |
| 52 | |
| 53 | def http_get(url): |
| 54 | http = urllib3.PoolManager( |
| 55 | cert_reqs='CERT_REQUIRED', ca_certs=DEFAULT_CA_BUNDLE |
| 56 | ) |
| 57 | response = http.request('GET', url) |
| 58 | return response |
| 59 | |
| 60 | |
| 61 | def http_post(url, data, files): |
no test coverage detected