26
submitted 1 year ago* (last edited 1 year ago) by bloopernova@programming.dev to c/programming@programming.dev

This is solved, I was being dumb. Please see second EDIT below

This isn't really language specific, but if it helps I'm using Python. I can get the parameters just fine with the Traitlets module, but I'm still a novice really and figuring out which patterns to use is challenging.

Say you have a bunch of command line parameters. Some are booleans, where their presence means True, absence means False. Other parameters must accept one text string, and others can be used multiple times to build a list of strings.

It feels inefficient/wrong to use a bunch of IF/THEN/ELSE statements to decide what to do with the parameters, and prone to edge case errors. Is there a pattern that would invoke the correct method based on the combination of input parameters?

Examples:

app thing --dry-run --create --name=newname01 --name=newname02 --verbose

app thing --create --name=newname01 --name=newname02 --name=newname03

app job --cancel -i 01 -i 02 -i 03

EDIT: Via the Traitlets module, I get those arguments parsed and accessible as self.argname, so getting them into my app is working great. It's just deciding what to do with them that is confusing me.

Thank you, sorry for my noobness.

EDIT2: I think I understand where I'm going wrong:

I'm creating subcommands based on objects, not actions. i.e. appname thing --action should really be appname action --thing. Once things are divided up into actions, assigning things to those actions will be much, much easier and straightforward.

Sorry for a confusing and fairly pointless post :(

you are viewing a single comment's thread
view the rest of the comments
[-] glad_cat@lemmy.sdf.org 11 points 1 year ago

It's never pointless. Command-line arguments are often tricky to get right, especially when your program can do a lot of different things.

[-] sj_zero@lotide.fbxl.net 6 points 1 year ago

Strings and human beings are two things that mix to create really tough problems.

[-] bloopernova@programming.dev 3 points 1 year ago

I just wish I had thought things through correctly but I guess that's part of becoming a more experienced coder. Arrrrggh! I'm so annoyed I wasted time on the otherwise excellent Traitlets' argument parsing!

[-] glad_cat@lemmy.sdf.org 4 points 1 year ago

I said it a billion times before but: failing is how you learn. You discover why you're wrong, and then you understand how to be right.

That's why I think juniors should not use ChatGPT but that's another story...

this post was submitted on 23 Aug 2023
26 points (93.3% liked)

Programming

17025 readers
147 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 1 year ago
MODERATORS