Skip to content

Instantly share code, notes, and snippets.

View bparry02's full-sized avatar

Bryan Parry bparry02

  • Red Hat, Inc.
  • Washington, D.C
View GitHub Profile
@bparry02
bparry02 / parse_tag.py
Created February 8, 2021 14:10 — forked from ashcrow/parse_tag.py
Quick and dirty parsing of tags
#!/usr/bin/env python
import json
import sys
def main():
for tag in json.loads(sys.stdin.read())['RepoTags']:
# Do your commands here
print(tag)