Details
-
Type:
Story
-
Status: Done
-
Resolution: Done
-
Fix Version/s: None
-
Component/s: daf_butler, obs_base
-
Story Points:8
-
Epic Link:
-
Sprint:DB_S20_02
-
Team:Data Access and Database
-
Urgent?:No
Description
Make the butler command in daf_butler able to call the register command in obs_base (at python/lsst/obs/base/instrument.py).
To do this, when obs_base is setup, it should add a colon separated list of CLI python code modules or functions. For example set it to lsst.obs.base.cli.
Then in butler command itself do something like:
for module in os.environ["DAF_BUTLER_PLUGINS"].split(":"): |
blah = doImport(cls)
|
and maybe have the imported class import the subcommands to click somehow
...it may help to be explicit and have the env var contain the actual command function (so lsst.obs.base.cli.register or somesuch).
Attachments
Issue Links
- relates to
-
DM-21898 Create command-line tools for Gen3 repo administration
- To Do
Looks good. Some minor comments on GitHub.