adobe_tools start
#!/usr/bin/python | |
"""Adobe API tools.""" | |
import sys | |
import time | |
import json | |
import os | |
try: | |
import jwt | |
import requests | |
except ImportError: | |
sys.exit(0) | |
if sys.version_info[0] == 2: | |
from ConfigParser import RawConfigParser | |
from urllib import urlencode | |
from urllib import quote | |
if sys.version_info[0] >= 3: | |
from configparser import RawConfigParser | |
from urllib.parse import urlencode |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment