Yan Zhou | Oct2025-1 | Tools | Sprint 4 | Cowsay Python - #7
Open
yanzhou-git wants to merge 1 commit into
Open
Conversation
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.
✅ Self-Checklist
I successfully interfaced with a third-party library (cowsay) instead of writing logic from scratch.
I dynamically fetched library metadata (char_names) to avoid hardcoding choices.
I used argparse to enforce valid inputs and generate standardized help menus.
I managed variable-length positional arguments using nargs='+'.
I validated that the tool fails correctly when provided with invalid parameters (like the fish example).
🔄 Changelist
Integrated Third-Party Library: Imported cowsay and used get_output_string for dynamic art generation.
Dynamic Argument Validation: Linked argparse.choices to cowsay.char_names for automated error handling.
String Processing: Implemented "".join() to convert list-based message inputs into a single printable string.
CLI Personalization: Configured the prog and description fields in argparse to match specific project requirements.
Sorting Logic: Applied sorted() to the library’s animal set to ensure a predictable and user-friendly --help interface.