You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We need to implement a module that parses command-line arguments and parameters. The base command can be something like bdot, and then after that we can put in some subcommands like bdot earth, and that will output some data about the Earth API.
We might also want some optional parameters
The text was updated successfully, but these errors were encountered:
Personally I would recommend we go with the canonical Python approach whenever possible (i.e. stdlib) so we can include as many folks as possible. In this case it would be argparse, which is actually not that bad to work with.
We need to implement a module that parses command-line arguments and parameters. The base command can be something like
bdot
, and then after that we can put in some subcommands likebdot earth
, and that will output some data about the Earth API.We might also want some optional parameters
The text was updated successfully, but these errors were encountered: