Add CLI Interface#3
Merged
08820048 merged 5 commits into08820048:masterfrom May 12, 2024
Merged
Conversation
Closed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
A simple CLI interface for use on the command line...One thing to note is that I changed the argument in
snake_to_cameltoupper_case_camelfromlower_case_camel...it still does teh exact same thing becauseto_lower_case_camelis defined later down to be the opposite ofupper_case_camel. My reason for doing that it because that means the program would only end one flag for theis_constantandupper_case_camel. If I used thelower_case_camel, the program would need multiple flags, one foris_constantand one forlower_case_camel. Obviously, if you have a reason you want it to belower_case_camel, you can ignore this PR. Thanks for reading!