Returns all output of a given category as a single string, assembled from all the "output" events received for that category so far.
(self, category)
| 733 | ] |
| 734 | |
| 735 | def output(self, category): |
| 736 | """Returns all output of a given category as a single string, assembled from |
| 737 | all the "output" events received for that category so far. |
| 738 | """ |
| 739 | events = self.all_events("output", some.dict.containing({"category": category})) |
| 740 | return "".join(event("output", str) for event in events) |
| 741 | |
| 742 | def _request_start(self, method): |
| 743 | self.config.normalize() |