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
""" | |
Merge all JSON files exported by GA user explorer in a directory into a single JSON file. | |
""" | |
import os | |
import json | |
# Path to the directory containing the JSON files | |
path = input("Enter the path: ") | |
# Read in the JSON files |
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
""" | |
Count the number of .md files in the specified branches. | |
Usage: | |
python count_md_files.py | |
Prompts: | |
Enter the branches (comma-separated): [Enter the branches as a comma-separated list] | |
""" | |
import os |