This script has moved the launchpad-toolkit repository.
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/local/env bash | |
set -ev | |
apt-get install -y libffi-dev libldap2-dev libsasl2-dev libxslt1.1 libxslt1-dev python-dev curl libssl-dev | |
curl https://bootstrap.pypa.io/get-pip.py | python | |
pip install -U virtualenv |
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
""" | |
Offline validation of oauth access_keys. | |
""" | |
import base64 | |
import string | |
import unittest | |
import urllib | |
import uuid | |
import zlib |