find.py 1.5 KB

123456789101112131415161718192021222324252627282930
  1. """Command to search through all keyboards and keymaps for a given search criteria.
  2. """
  3. from milc import cli
  4. from qmk.search import filter_help, search_keymap_targets
  5. from qmk.util import maybe_exit_config
  6. @cli.argument(
  7. '-f',
  8. '--filter',
  9. arg_only=True,
  10. action='append',
  11. default=[],
  12. help= # noqa: `format-python` and `pytest` don't agree here.
  13. f"Filter the list of keyboards based on their info.json data. Accepts the formats key=value, function(key), or function(key,value), eg. 'features.rgblight=true'. Valid functions are {filter_help()}. May be passed multiple times; all filters need to match. Value may include wildcards such as '*' and '?'." # noqa: `format-python` and `pytest` don't agree here.
  14. )
  15. @cli.argument('-p', '--print', arg_only=True, action='append', default=[], help="For each matched target, print the value of the supplied info.json key. May be passed multiple times.")
  16. @cli.argument('-km', '--keymap', type=str, default='default', help="The keymap name to build. Default is 'default'.")
  17. @cli.subcommand('Find builds which match supplied search criteria.')
  18. def find(cli):
  19. """Search through all keyboards and keymaps for a given search criteria.
  20. """
  21. maybe_exit_config(should_exit=False, should_reraise=True)
  22. targets = search_keymap_targets([('all', cli.config.find.keymap)], cli.args.filter)
  23. for target in sorted(targets, key=lambda t: (t.keyboard, t.keymap)):
  24. print(f'{target}')
  25. for key in cli.args.print:
  26. print(f' {key}={target.dotty.get(key, None)}')