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
| from pathlib import Path | |
| import datetime | |
| from github import Github # PyGithub = "^1.58.0" | |
| from tqdm import tqdm # tqdm = "^4.65.0" | |
| ORG = 'Ceph' | |
| def main(): | |
| with open(Path.home() / ".github_token") as f: |