(self)
| 52 | self.send_input({"type": "http.request", "body": b""}) |
| 53 | |
| 54 | def get_output(self): |
| 55 | output = asyncio.new_event_loop().run_until_complete( |
| 56 | self.communicator.receive_output(0) |
| 57 | ) |
| 58 | return output |
| 59 | |
| 60 | def get_all_output(self): |
| 61 | outputs = [] |