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 python3 | |
import sys | |
import json | |
import requests | |
import feedparser | |
import re | |
BUG_ID = sys.argv[1] if len(sys.argv) > 1 else None | |
if not BUG_ID or not BUG_ID.isdigit(): | |
print("Usage: python3 chrome-bug-commit-tracker.py <bug_id>") |