NAMESPACE: me.hegland-lance
PURPOSE: Practice using VSCode, Markdown, Python, Git, and GitHub tools while testing development environment installation and configuration.
.
- Features
- Background
- Known Issues
- Requirements
- Installation
- Configuration
- Usage
- Authors
- Roadmap
- License
.
Hands-on practice and testing of Python, VSCode, Git, and GitHub tools (i.e. experiential learning) that is relatively quick and easy plus offers reusable code modules, including the following:
- creating local and remote GitHub repositories
- using the following Git features
Command Tutorial Git Ref clone Link Link init Link Link status Link Link diff Link Link add Link Link commit Link Link remote Link Link push Link Link - using VSCode to update project files, including the following:
- module_sample.py
- config_log.py
- README.md
- LICENSE.txt
- using Python style coding conventions to improve code readability, usability, and sustainability, including function annotations, type hints, variable annotations, and variable annotation syntax
- using Python docstring conventions for modules and functions to improve readability, usability, and testability
- using common and unexpected exception trapping (i.e. error handling) to improve usability, testability, plus debugability with easy-to-understand and actionable messages
- importing from The Python Standard Library to efficiently integrate credible functionality (i.e. broadly reviewed, tested, and trusted by community members), including the following:
- providing a command line interface for module config_log.py's help and usage information, which improves module usability and testability, by using argparse library (See
py config_log.py -h
) - logging to either stderr or file depending on user input, plus short "FYI" messages (e.g. info, debug) versus more detailed "alert" messages (e.g. warning, error, critical), which improves testability and debugability, using logging library plus logging "how-to" references to learn about flow, levels, handlers, records, filters, plus formatters (both date formatting and record formatting)
- providing a command line interface for module config_log.py's help and usage information, which improves module usability and testability, by using argparse library (See
- importing from inter-application modules to reuse developed functionality
.
Lance Hegland wanted to test his local development environment, including the following tools:
- VSCode
- Python
- Git
- GitHub
.
None
.
- Familiarity and access to recent versions of the following development tools:
Tool Download Reference with VSCode VSCode Link Link + Markdown Preview Github Styling Link + GitHub Pull Requests and Issues Link + Python Tools Link Python Link Link Link Git Link Link Link GitHub Link Link
.
- Review README.md
- Perform the necessary actions to satisfy minimum requirements.
- From your local projects directory, copy the entire remote GitHub repository LHHegland/python_examples into a local working area (
git clone git@github.com:LHHegland/python_examples.git
)
.
None
.
Use VSCode, Markdown, Python, Git, and GitHub tools plus provided code examples as you do the following:
- Use VSCode to create a Python module hello_world
- Use VSCode to create a Python module (e.g. user_greeting) that asks for the users full name (e.g. Pat Smith) and returns the message "Hi, {first_name}!" (E.g. "Hi, Pat!"). See input and output functions. Feel free to explore the online tutorials from DataCamp to help you.
- Create a Python module (e.g. logging_display) that uses the logging library to display logging messages (e.g. info, debug, warning, error, critical) to the user's screen (e.g. stderr).
- Create a Python module (e.g. logging_file) that uses the logging library to record logging messages (e.g. info, debug, warning, error, critical) in a specific file (e.g. my.log).
- Create a single Python module (e.g. logging_both) that uses the logging library to either display or store logging messages depending on the command line options or function parameters provided by the user; combining the functionality of logging_display and logging_file.
- Update your Python module logging_both to include exception trapping (i.e. error handling) to improve usability, testability, plus debugability with easy-to-understand and actionable messages.
- Update your Python module logging_both to include a command line interface to display help and usage information, which improves module usability and testability, by using argparse library (See
py config_log.py -h
) - Update your user greeting module to include logging.
- Review and update your modules to reflect the following:
- Python style coding conventions to improve code readability, usability, and sustainability, including function annotations, type hints, variable annotations, and variable annotation syntax
- Python docstring conventions for modules and functions to improve readability, usability, and testability
- Make a README document using Markdown language.
- Choose an open source license and copy the text into a LICENSE.txt file
- Create and push your Python example package to a newly created remote repository in your GitHub account.
- From your local working area with your newly created files, initialize your local repository (
git init
) - Update working area to staging area (
git add --verbose --all
) - Review differences: working vs. staging vs. commits
- Review file differences between last commit vs staging areas vs working area (
git status
) - Review file line differences between staging area vs working area (
git diff
) - Review differences to be committed (file line differences between last commit vs staging area) (
git diff --cached
)
- Review file differences between last commit vs staging areas vs working area (
- Update staging area to commits area (
git commit --message="Initial Commit with Base Files"
) - Review differences: working vs. staging vs. commits
- Review differences between last commit vs staging areas vs working area (
git status
) - Review file line differences between staging area vs working area (
git diff
) - Review file line differences to be committed (last commit vs staging area) (
git diff --cached
) - Review file line differences between last commit vs working area (
git diff HEAD
) - Review commit history (
git log --oneline
) - Review commit change summary by file (
git log --stat
) - Review brief commit messages by author (
git shortlog
) - Review commit diagram (
git log --graph --oneline --decorate
) - Review commit changes by file (
git log -p
)
- Review differences between last commit vs staging areas vs working area (
- Create remote GitHub repository my_python_examples
- Connect to that remote repository (
git remote add origin git@github.com:your_username/my_python_examples.git
) - Verify remote repository (
git remote -v
) - Review existing branches (
git branch --list
) - Update remote repository (
git push -u origin master
) .
- From your local working area with your newly created files, initialize your local repository (
- Lance Hegland (lance.hegland@gmail.com)
.
None
.
GNU General Public License v3.0 (GNU GPLv3)