5428c5f296
Generated by com2ann (slightly patched to avoid also converting assignment type annotations, which require Python 3.6), followed by some manual whitespace adjustment, and two fixes for use-before-define issues: - def set_zulip_client(self, zulipToJabberClient: ZulipToJabberBot) -> None: + def set_zulip_client(self, zulipToJabberClient: 'ZulipToJabberBot') -> None: -def init_from_options(options: Any, client: Optional[str] = None) -> Client: +def init_from_options(options: Any, client: Optional[str] = None) -> 'Client': Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
30 lines
831 B
Python
Executable file
30 lines
831 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
import argparse
|
|
|
|
from typing import Any, Dict
|
|
|
|
usage = """print-events [options]
|
|
|
|
Prints out certain events received by the indicated bot or user matching the filter below.
|
|
|
|
Example: print-events
|
|
|
|
Specify your Zulip API credentials and server in a ~/.zuliprc file or using the options.
|
|
"""
|
|
|
|
import zulip
|
|
|
|
parser = zulip.add_default_arguments(argparse.ArgumentParser(usage=usage))
|
|
options = parser.parse_args()
|
|
|
|
client = zulip.init_from_options(options)
|
|
|
|
def print_event(event: Dict[str, Any]) -> None:
|
|
print(event)
|
|
|
|
# This is a blocking call, and will continuously poll for new events
|
|
# Note also the filter here is messages to the stream Denmark; if you
|
|
# don't specify event_types it'll print all events.
|
|
client.call_on_each_event(print_event, event_types=["message"], narrow=[["stream", "Denmark"]])
|