()
| 7 | |
| 8 | |
| 9 | def main(): |
| 10 | client = BlockingClient() |
| 11 | resp = client.post( |
| 12 | "https://httpbin.org/anything", |
| 13 | headers={"Content-Type": "application/x-www-form-urlencoded"}, |
| 14 | body=gen(), |
| 15 | ) |
| 16 | print(resp.json()) |
| 17 | |
| 18 | |
| 19 | if __name__ == "__main__": |
no test coverage detected