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 bash | |
# See also https://github.com/akamai/akamaipowershell | |
usage() { | |
cat <<EOT | |
Usage: $(basename $0) -X value -s value -t value -a value -u value [-d value] [-h] | |
Options: | |
-s Client secret |
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 python2.7 | |
# -*- coding: utf-8 -*- | |
from __future__ import print_function, unicode_literals | |
from bs4 import BeautifulSoup | |
import hashlib | |
import logging | |
import json | |
import os | |
import sys | |
import re |