def main():
- parser = argparse.ArgumentParser(description="CLI for the Lufft OPUS20")
+ parser = argparse.ArgumentParser(description="CLI for the Lufft OPUS20. Note that the subcommands provide their own --help!")
parser.add_argument('host', help='hostname of the device')
parser.add_argument('--port', '-p', type=int, help='TCP port of the OPUS20')
parser.add_argument('--timeout', '-t', type=float, help='Timeout of the TCP connection in seconds')
parser_get.add_argument('channel', type=extended_int, nargs='+', help='The selected channel(s)')
parser_download = subparsers.add_parser('download', help='download the logs and store them locally')
parser_download.add_argument('persistance_file', help='file to store the logs in')
- parser_logging = subparsers.add_parser('logging', help='change or query global logging settings')
+ parser_logging = subparsers.add_parser('logging', help='change or query global logging settings (start, stop, clear)')
subsubparsers = parser_logging.add_subparsers(help='Action to perform w/ respect to logging', dest='action')
parser_logging_action_status = subsubparsers.add_parser('status', help='Query the current logging status of the device')
parser_logging_action_start = subsubparsers.add_parser('start', help='Start logging altogether on the device')
if args.timeout: kwargs['timeout'] = args.timeout
o20 = Opus20(args.host, **kwargs)
+ logger.info(o20.get_logging_state())
if args.cmd == 'list':
for channel in o20.available_channels:
+ logger.info(o20.get_channel_logging_state(channel))
print("Channel {:5d} (0x{:04X}): {name:22s} unit: {unit:6s} offset: {offset}".format(channel, channel, **OPUS20_CHANNEL_SPEC[channel]))
if args.cmd == 'get':
if len(args.channel) > 1:
url = '',
license = 'GPL',
packages = ['opus20', 'opus20.webapp'],
- scripts = [
- 'scripts/opus20_cli',
- 'scripts/opus20_web',
- 'scripts/opus20_discovery',
- 'scripts/opus20_fakeserver',
- ],
+ entry_points = {
+ 'console_scripts': [
+ 'opus20_cli = opus20.opus20_cli:main',
+ 'opus20_web = opus20.opus20_web:main',
+ 'opus20_discovery = opus20.opus20_discovery:main',
+ 'opus20_fakeserver = opus20.opus20_fakeserver:main',
+ ],
+ },
include_package_data = True,
zip_safe = True,
platforms = 'any',