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/python3 -u | |
"""A wrapper around oauth2curl. Makes multiple | |
calls to oauth2curl. Returns items one item | |
per line.""" | |
from argparse import ArgumentParser | |
from subprocess import Popen, PIPE | |
import sys | |
from urllib.parse import urlsplit, parse_qs, urlencode, urlunsplit | |
import json | |
import signal |