(url, **kwargs)
| 510 | |
| 511 | |
| 512 | def http(url, **kwargs): |
| 513 | # timeout = kwargs.get("timeout", 10) |
| 514 | # con = httpcon(timeout=timeout) |
| 515 | hack = hackRequests() |
| 516 | return hack.http(url, **kwargs) |
| 517 | |
| 518 | |
| 519 | def httpraw(raw: str, **kwargs): |
nothing calls this directly
no test coverage detected