Last active
September 12, 2025 15:51
-
-
Save iainelder/e7242c63b2dca00ad2140f8478bf83f3 to your computer and use it in GitHub Desktop.
List names for boto3.set_stream_logger. See https://boto3.amazonaws.com/v1/documentation/api/latest/reference/core/boto3.html#boto3.set_stream_logger
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
| #!/usr/bin/env bash | |
| list=( | |
| https://github.com/boto/boto3.git | |
| https://github.com/boto/botocore.git | |
| https://github.com/boto/s3transfer.git | |
| ) | |
| for repo in "${list[@]}"; do | |
| dir=$(basename "$repo" ".git") | |
| git -C "$dir" pull -q || git clone -q --depth=1 "$repo" | |
| printf "%s: %s\n" "$dir" "$(git -C "$dir" rev-parse HEAD)" | |
| done | |
| printf "names:\n" | |
| grep -R -l -F "getLogger" --exclude-dir=docs --exclude-dir=tests | | |
| cut -d/ -f2- | | |
| sed 's:\(/__init__\)\?.py$::' | | |
| tr '/' '.' | | |
| sort |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Output: