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>
28 lines
976 B
Python
28 lines
976 B
Python
#!/usr/bin/env python3
|
|
import os
|
|
import zulip
|
|
|
|
import argparse
|
|
|
|
def main() -> None:
|
|
usage = """zulip-api-examples [script_name]
|
|
|
|
Prints the path to the Zulip API example scripts."""
|
|
parser = argparse.ArgumentParser(usage=usage)
|
|
parser.add_argument('script_name',
|
|
nargs='?',
|
|
default='',
|
|
help='print path to the script <script_name>')
|
|
args = parser.parse_args()
|
|
zulip_path = os.path.abspath(os.path.dirname(zulip.__file__))
|
|
examples_path = os.path.abspath(os.path.join(zulip_path, 'examples', args.script_name))
|
|
if os.path.isdir(examples_path) or (args.script_name and os.path.isfile(examples_path)):
|
|
print(examples_path)
|
|
else:
|
|
raise OSError("Examples cannot be accessed at {}: {} does not exist!"
|
|
.format(examples_path,
|
|
"File" if args.script_name else "Directory"))
|
|
|
|
if __name__ == '__main__':
|
|
main()
|