{ "info": { "author": "Colin Panisset", "author_email": "colin.panisset@cevo.com.au", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "Intended Audience :: System Administrators", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Topic :: Security", "Topic :: System :: Systems Administration :: Authentication/Directory" ], "description": "aws-google-auth\n===============\n\n|travis-badge| |docker-badge| |pypi-badge| |coveralls-badge|\n\n.. |travis-badge| image:: https://img.shields.io/travis/cevoaustralia/aws-google-auth.svg\n :target: https://travis-ci.org/cevoaustralia/aws-google-auth\n :alt: Travis build badge\n\n.. |docker-badge| image:: https://img.shields.io/docker/build/cevoaustralia/aws-google-auth.svg\n :target: https://hub.docker.com/r/cevoaustralia/aws-google-auth/\n :alt: Docker build status badge\n\n.. |pypi-badge| image:: https://img.shields.io/pypi/v/aws-google-auth.svg\n :target: https://pypi.python.org/pypi/aws-google-auth/\n :alt: PyPI version badge\n\n.. |coveralls-badge| image:: https://coveralls.io/repos/github/cevoaustralia/aws-google-auth/badge.svg?branch=master\n :target: https://coveralls.io/github/cevoaustralia/aws-google-auth?branch=master\n\nThis command-line tool allows you to acquire AWS temporary (STS)\ncredentials using Google Apps as a federated (Single Sign-On, or SSO)\nprovider.\n\nSetup\n-----\n\nYou'll first have to set up Google Apps as a SAML identity provider\n(IdP) for AWS. There are tasks to be performed on both the Google Apps\nand the Amazon sides; these references should help you with those\nconfigurations:\n\n- `How to Set Up Federated Single Sign-On to AWS Using Google\n Apps `__\n- `Using Google Apps SAML SSO to do one-click login to\n AWS `__\n\nIf you need a fairly simple way to assign users to roles in AWS\naccounts, we have another tool called `Google AWS\nFederator `__\nthat might help you.\n\nImportant Data\n~~~~~~~~~~~~~~\n\nYou will need to know Google's assigned Identity Provider ID, and the ID\nthat they assign to the SAML service provider.\n\nOnce you've set up the SAML SSO relationship between Google and AWS, you\ncan find the SP ID by drilling into the Google Apps console, under\n``Apps > SAML Apps > Settings for AWS SSO`` -- the URL will include a\ncomponent that looks like ``...#AppDetails:service=123456789012...`` --\nthat number is ``GOOGLE_SP_ID``\n\nYou can find the ``GOOGLE_IDP_ID``, again from the admin console, via\n``Security > Set up single sign-on (SSO)`` -- the ``SSO URL`` includes a\nstring like ``https://accounts.google.com/o/saml2/idp?idpid=aBcD01AbC``\nwhere the last bit (after the ``=``) is the IDP ID.\n\nInstallation\n------------\n\nYou can install quite easily via ``pip``, if you want to have it on your\nlocal system:\n\n.. code:: shell\n\n # For basic installation\n localhost$ sudo pip install aws-google-auth\n\n # For installation with U2F support\n localhost$ sudo pip install aws-google-auth[u2f]\n\n\n*Note* If using ZSH you will need to quote the install, as below:\n\n.. code:: shell\n\n localhost$ sudo pip install \"aws-google-auth[u2f]\"\n\nIf you don't want to have the tool installed on your local system, or if\nyou prefer to isolate changes, there is a Dockerfile provided, which you\ncan build with:\n\n.. code:: shell\n\n # Perform local build\n localhost$ cd ..../aws-google-auth && docker build -t aws-google-auth .\n\n # Use the Docker Hub version\n localhost$ docker pull cevoaustralia/aws-google-auth\n\nDevelopment\n-----------\n\nIf you want to develop the AWS-Google-Auth tool itself, we thank you! In order\nto help you get rolling, you'll want to install locally with pip. Of course,\nyou can use your own regular workflow, with tools like `virtualenv `__.\n\n.. code:: shell\n\n # Install (without U2F support)\n pip install -e .\n\n # Install (with U2F support)\n pip install -e .[u2f]\n\nWe welcome you to review our `code of conduct `__ and\n`contributing `__ documents.\n\nUsage\n-----\n\n.. code:: shell\n\n $ aws-google-auth -h\n usage: aws-google-auth [-h] [-u USERNAME] [-I IDP_ID] [-S SP_ID] [-R REGION]\n [-d DURATION] [-p PROFILE] [-D] [-q] [--no-cache]\n [--print-creds] [--resolve-aliases]\n [--save-failure-html] [-a | -r ROLE_ARN] [-k] [-V]\n\n Acquire temporary AWS credentials via Google SSO\n\n optional arguments:\n -h, --help show this help message and exit\n -u USERNAME, --username USERNAME\n Google Apps username ($GOOGLE_USERNAME)\n -I IDP_ID, --idp-id IDP_ID\n Google SSO IDP identifier ($GOOGLE_IDP_ID)\n -S SP_ID, --sp-id SP_ID\n Google SSO SP identifier ($GOOGLE_SP_ID)\n -R REGION, --region REGION\n AWS region endpoint ($AWS_DEFAULT_REGION)\n -d DURATION, --duration DURATION\n Credential duration ($DURATION)\n -p PROFILE, --profile PROFILE\n AWS profile (defaults to value of $AWS_PROFILE, then\n falls back to 'sts')\n -D, --disable-u2f Disable U2F functionality.\n -q, --quiet Quiet output\n --no-cache Do not cache the SAML Assertion.\n --print-creds Print Credentials.\n --resolve-aliases Resolve AWS account aliases.\n --save-failure-html Write HTML failure responses to file for\n troubleshooting.\n -a, --ask-role Set true to always pick the role\n -r ROLE_ARN, --role-arn ROLE_ARN\n The ARN of the role to assume\n -k, --keyring Use keyring for storing the password.\n -V, --version show program's version number and exit\n\n\n**Note** that if you want longer than the default 3600 seconds (1 hour)\nduration, you must also modify the IAM Role to permit this. See\n`the AWS documentation `__\nfor more information.\n\nNative Python\n~~~~~~~~~~~~~\n\n1. Execute ``aws-google-auth``\n2. You will be prompted to supply each parameter\n\n*Note* You can skip prompts by either passing parameters to the command, or setting the specified Environment variables.\n\nVia Docker\n~~~~~~~~~~~~~\n\n1. Set environment variables for ``GOOGLE_USERNAME``, ``GOOGLE_IDP_ID``,\n and ``GOOGLE_SP_ID`` (see above under \"Important Data\" for how to\n find the last two; the first one is usually your email address)\n2. For Docker:\n ``docker run -it -e GOOGLE_USERNAME -e GOOGLE_IDP_ID -e GOOGLE_SP_ID cevoaustralia/aws-google-auth``\n\nYou'll be prompted for your password. If you've set up an MFA token for\nyour Google account, you'll also be prompted for the current token\nvalue.\n\nIf you have more than one role available to you, you'll be prompted to\nchoose the role from a list; otherwise, if your credentials are correct,\nyou'll just see the AWS keys printed on stdout.\n\nIf you have a U2F security key added to your Google account, you won't\nbe able to use this via Docker; the Docker container will not be able to\naccess any devices connected to the host ports. You will likely see the\nfollowing error during runtime: \"RuntimeWarning: U2F Device Not Found\".\n\nFeeding password from stdin\n~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nTo enhance usability when using third party tools for managing passwords (aka password manager) you can feed data in\n``aws-google-auth`` from ``stdin``.\n\nWhen receiving data from ``stdin`` ``aws-google-auth`` disables the interactive prompt and uses ``stdin`` data.\n\nBefore `#82 `_, all interactive prompts could be fed from ``stdin`` already apart from the ``Google Password:`` prompt.\n\nExample usage:\n```\n$ password-manager show password | aws-google-auth\nGoogle Password: MFA token:\nAssuming arn:aws:iam::123456789012:role/admin\nCredentials Expiration: ...\n```\n\n**Note:** this feature is intended for password manager integration, not for passing passwords from command line.\nPlease use interactive prompt if you need to pass the password manually, as this provide enhanced security avoid\npassword leakage to shell history.\n\nStorage of profile credentials\n------------------------------\n\nThrough the use of AWS profiles, using the ``-p`` or ``--profile`` flag, the ``aws-google-auth`` utility will store the supplied username, IDP and SP details in your ``./aws/config`` files.\n\nWhen re-authenticating using the same profile, the values will be remembered to speed up the re-authentication process.\nThis enables an approach that enables you to enter your username, IPD and SP values once and then after only need to re-enter your password (and MFA if enabled).\n\nCreating an alias as below can be a quick and easy way to re-authenticate with a simple command shortcut.\n\n```\nalias aws-development='unset AWS_PROFILE; aws-google-auth -I $GOOGLE_IDP_ID -S $GOOGLE_SP_ID -u $USERNAME -p aws-dev ; export AWS_PROFILE=aws-dev'\n```\n\nOr, if you've alredy established a profile with valid cached values:\n\n```\nalias aws-development='unset AWS_PROFILE; aws-google-auth -p aws-dev ; export AWS_PROFILE=aws-dev'\n```\n\n\nNotes on Authentication\n-----------------------\n\nGoogle supports a number of 2-factor authentication schemes. Each of these\nresults in a slightly different \"next\" URL, if they're enabled, during ``do_login``\n\nGoogle controls the preference ordering of these schemes in the case that\nyou have multiple ones defined.\n\nThe varying 2-factor schemes and their representative URL fragments handled\nby this tool are:\n\n+------------------+-------------------------------------+\n| Method | URL Fragment |\n+==================+=====================================+\n| No second factor | (none) |\n+------------------+-------------------------------------+\n| TOTP (eg Google | ``.../signin/challenge/totp/2?...`` |\n| Authenticator | |\n| or Authy) | |\n+------------------+-------------------------------------+\n| SMS (or voice | ``.../signin/challenge/ipp/2?...`` |\n| call) | |\n+------------------+-------------------------------------+\n| SMS (or voice | ``.../signin/challenge/iap/...`` |\n| call) with | |\n| number | |\n| submission | |\n+------------------+-------------------------------------+\n| Google Prompt | ``.../signin/challenge/az/2?...`` |\n| (phone app) | |\n+------------------+-------------------------------------+\n| Security key | ``.../signin/challenge/sk/...`` |\n| (eg yubikey) | |\n+------------------+-------------------------------------+\n| Backup code | ``... (unknown yet) ...`` |\n| (printed codes) | |\n+------------------+-------------------------------------+\n\nAcknowledgments\n----------------\n\nThis work is inspired by `keyme `__\n-- their digging into the guts of how Google SAML auth works is what's\nenabled it.\n\nThe attribute management and credential injection into AWS configuration files\nwas heavily borrowed from `aws-adfs `", "description_content_type": "", "docs_url": null, "download_url": "https://github.com/cevoaustralia/aws-google-auth/archive/0.0.32.tar.gz", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/cevoaustralia/aws-google-auth", "keywords": "saml sso federated identity google aws cli", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "aws-google-auth", "package_url": "https://pypi.org/project/aws-google-auth/", "platform": "", "project_url": "https://pypi.org/project/aws-google-auth/", "project_urls": { "Download": "https://github.com/cevoaustralia/aws-google-auth/archive/0.0.32.tar.gz", "Homepage": "https://github.com/cevoaustralia/aws-google-auth" }, "release_url": "https://pypi.org/project/aws-google-auth/0.0.32/", "requires_dist": null, "requires_python": "", "summary": "Acquire AWS STS (temporary) credentials via Google Apps SAML Single Sign On", "version": "0.0.32" }, "last_serial": 5593061, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "ae5cb266d4643d847a9a4c96957b9694", "sha256": "9ac767794365f64cb05692cf9915008d04993b391475eeb2daade347834edcca" }, "downloads": -1, "filename": "aws-google-auth-0.0.1.tar.gz", "has_sig": false, "md5_digest": "ae5cb266d4643d847a9a4c96957b9694", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6886, "upload_time": "2017-06-15T08:06:48", "url": "https://files.pythonhosted.org/packages/43/b3/3fb4952574a2bce35461d0b8e42938454f9b682ccb4a907d947b83225aae/aws-google-auth-0.0.1.tar.gz" } ], "0.0.10": [ { "comment_text": "", "digests": { "md5": "11b38b86d4b3552adbe23089eb2bda72", "sha256": "13926484bd64a3a19cb627d3f412ab4752f71282030c2cb572263fcff3e5dd68" }, "downloads": -1, "filename": "aws-google-auth-0.0.10.tar.gz", "has_sig": false, "md5_digest": "11b38b86d4b3552adbe23089eb2bda72", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11498, "upload_time": "2017-07-24T13:11:27", "url": "https://files.pythonhosted.org/packages/39/1a/11a6c385f4678f57357b26b2d510f10b8b605e32801fc821f3bccb61bbb8/aws-google-auth-0.0.10.tar.gz" } ], "0.0.11": [ { "comment_text": "", "digests": { "md5": "99593a34607cef60ed9434f2e20195e6", "sha256": "ccd1dc9432930fc7088e9302de284fad2adc16c49ef9622cb6c7bd8e7e249e95" }, "downloads": -1, "filename": "aws-google-auth-0.0.11.tar.gz", "has_sig": false, "md5_digest": "99593a34607cef60ed9434f2e20195e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11537, "upload_time": "2017-07-26T12:33:32", "url": "https://files.pythonhosted.org/packages/16/f9/336d4b7b365cca6234c919a22cf6cb68b53fabed8de0e7a85fc76f84cdd2/aws-google-auth-0.0.11.tar.gz" } ], "0.0.12": [ { "comment_text": "", "digests": { "md5": "9b2177f5b97bb6d2a715e42259bfcc72", "sha256": "82054f27693964f94249ab70c276c3886bf5423b24db3a4a1d943a97ec9d83a2" }, "downloads": -1, "filename": "aws-google-auth-0.0.12.tar.gz", "has_sig": false, "md5_digest": "9b2177f5b97bb6d2a715e42259bfcc72", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11668, "upload_time": "2017-08-01T01:18:09", "url": "https://files.pythonhosted.org/packages/a5/9e/921a261acf6c70cbed6499ce196788bd07ba865657bd3938a4960a73c438/aws-google-auth-0.0.12.tar.gz" } ], "0.0.13": [ { "comment_text": "", "digests": { "md5": "1150fc4e6206b3bff313a65435979804", "sha256": "dd1cca378cb2f57d624e12f495c60e960c43d255b1ae751fd73c9d7e2d83dcb5" }, "downloads": -1, "filename": "aws-google-auth-0.0.13.tar.gz", "has_sig": false, "md5_digest": "1150fc4e6206b3bff313a65435979804", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11760, "upload_time": "2017-12-04T21:15:59", "url": "https://files.pythonhosted.org/packages/37/12/8a70c4212aaeec5a061df87d0e4d0298bd52f8590028afb3e32db2cb75dc/aws-google-auth-0.0.13.tar.gz" } ], "0.0.14": [ { "comment_text": "", "digests": { "md5": "641b65076b30d06c023f7f4909cfd17d", "sha256": "d55772d415d5b37eb0b51f7ca11fb517f0a4fb12a2d9faeb7db37656d12fca79" }, "downloads": -1, "filename": "aws-google-auth-0.0.14.tar.gz", "has_sig": false, "md5_digest": "641b65076b30d06c023f7f4909cfd17d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13377, "upload_time": "2017-12-04T21:29:01", "url": "https://files.pythonhosted.org/packages/c3/9e/2864132d39d76415ce869e14c766b4f060d0dc1386d6d6d16a426cb0c5be/aws-google-auth-0.0.14.tar.gz" } ], "0.0.15": [ { "comment_text": "", "digests": { "md5": "c07946e7fc3ef61f9325ef6e6c782276", "sha256": "bdcbf590427d40a93388578bed6eeed102af774b7ac76a4ace79e32265b0a4db" }, "downloads": -1, "filename": "aws-google-auth-0.0.15.tar.gz", "has_sig": false, "md5_digest": "c07946e7fc3ef61f9325ef6e6c782276", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14511, "upload_time": "2017-12-21T22:11:32", "url": "https://files.pythonhosted.org/packages/53/6e/1507011e4fcbf4d37a84846ec9a8fab3ec26656e85ed2bed52ab18def5ae/aws-google-auth-0.0.15.tar.gz" } ], "0.0.16": [ { "comment_text": "", "digests": { "md5": "c73bb91e39d9ac0110584d6881a5812b", "sha256": "3351f572754b1ee7b08cba63b1e909c9bf910df4bcb26cae0d868bd72d80dbe5" }, "downloads": -1, "filename": "aws-google-auth-0.0.16.tar.gz", "has_sig": false, "md5_digest": "c73bb91e39d9ac0110584d6881a5812b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18432, "upload_time": "2018-01-17T21:22:56", "url": "https://files.pythonhosted.org/packages/f4/a7/83e39c5827a31d27416ee1f7dbfa95ccc96e3989df29db68ce22751583df/aws-google-auth-0.0.16.tar.gz" } ], "0.0.17": [ { "comment_text": "", "digests": { "md5": "d439ed260829a0b2a87f134ed6b7b6a7", "sha256": "ffeb714c39078594cd5606f58cae24929795101d86ab48fc795263d672775045" }, "downloads": -1, "filename": "aws-google-auth-0.0.17.tar.gz", "has_sig": false, "md5_digest": "d439ed260829a0b2a87f134ed6b7b6a7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18623, "upload_time": "2018-01-18T21:04:35", "url": "https://files.pythonhosted.org/packages/ce/4d/5546b1cfd31512741f57c47ae4c77667703a02ff3ef82112e7a2e8f0f738/aws-google-auth-0.0.17.tar.gz" } ], "0.0.18": [ { "comment_text": "", "digests": { "md5": "c23c3c57a804da781b9759c3d08d8c6c", "sha256": "c3b31500376f5da8b364dec97ba22690deffacc3fe8a8b14e7b2843574c32440" }, "downloads": -1, "filename": "aws-google-auth-0.0.18.tar.gz", "has_sig": false, "md5_digest": "c23c3c57a804da781b9759c3d08d8c6c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19732, "upload_time": "2018-01-25T23:36:31", "url": "https://files.pythonhosted.org/packages/09/dd/773f6128566231d4166647269926967bf9b904cce795303dc811345eab85/aws-google-auth-0.0.18.tar.gz" } ], "0.0.19": [ { "comment_text": "", "digests": { "md5": "98b5a0800bad04ae99c44ce77687859e", "sha256": "6e0b38cb93cf761cd26c0b90b1ab44f3d4e1272672ae6e6ab7980b42b50e7a9e" }, "downloads": -1, "filename": "aws-google-auth-0.0.19.tar.gz", "has_sig": false, "md5_digest": "98b5a0800bad04ae99c44ce77687859e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20490, "upload_time": "2018-01-29T21:36:19", "url": "https://files.pythonhosted.org/packages/76/8f/a8c13ec98878596e1706389faa7740d56dcd48e135e6c4e06410556f770e/aws-google-auth-0.0.19.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "47eed2f7f1e4e076d42c5902803e0d68", "sha256": "3e2a1222b43fa18e1a9c286c307b8f29baa56d8d10bb601f7dc6490e84d0c85d" }, "downloads": -1, "filename": "aws-google-auth-0.0.2.tar.gz", "has_sig": false, "md5_digest": "47eed2f7f1e4e076d42c5902803e0d68", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7267, "upload_time": "2017-07-24T07:01:43", "url": "https://files.pythonhosted.org/packages/44/bd/15798303119ea0e4b9c5caa5fdb6648c2f8161ff98dee4ee20f694f2faa2/aws-google-auth-0.0.2.tar.gz" } ], "0.0.20": [ { "comment_text": "", "digests": { "md5": "8bbb51c4fe8b5fe62567a654f7bd5f41", "sha256": "6d96d8bdc250523355f23d1affbda4649302484d3360b7131f73e03397e91ec7" }, "downloads": -1, "filename": "aws-google-auth-0.0.20.tar.gz", "has_sig": false, "md5_digest": "8bbb51c4fe8b5fe62567a654f7bd5f41", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20497, "upload_time": "2018-02-01T22:15:27", "url": "https://files.pythonhosted.org/packages/df/47/ed291cad84667549821f7c5d4a0109f104a07442eedddc89ccc43557f25b/aws-google-auth-0.0.20.tar.gz" } ], "0.0.21": [ { "comment_text": "", "digests": { "md5": "b5825ea4b5c23fee3cd84140fa287b29", "sha256": "16f44ee057932a6eb309fe92d1ef7084cc3922ca47b033abab5fe1251c8c8269" }, "downloads": -1, "filename": "aws-google-auth-0.0.21.tar.gz", "has_sig": false, "md5_digest": "b5825ea4b5c23fee3cd84140fa287b29", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20943, "upload_time": "2018-02-22T11:27:41", "url": "https://files.pythonhosted.org/packages/e6/23/20071c7d552f744ba9af2a942953d4b263543c2cef53921285697d7d7155/aws-google-auth-0.0.21.tar.gz" } ], "0.0.22": [ { "comment_text": "", "digests": { "md5": "1541b642667f363fd78647dbff705621", "sha256": "8bd47612887514c3a8bfb39cac170451535742580b2413889bcec0fb0a658d8a" }, "downloads": -1, "filename": "aws-google-auth-0.0.22.tar.gz", "has_sig": false, "md5_digest": "1541b642667f363fd78647dbff705621", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21220, "upload_time": "2018-03-15T21:22:45", "url": "https://files.pythonhosted.org/packages/2c/d2/54c872cc4d5dff84b3645d468aa14352b2f5b9f0cbc50c54685dc84edc9c/aws-google-auth-0.0.22.tar.gz" } ], "0.0.23": [ { "comment_text": "", "digests": { "md5": "5c9155e9be7161e7e6804c093db46ea8", "sha256": "e5e009b7ed4ed952bbf8ad1bbc37c2a37a613208797f74e5b6ebaf8e539ed199" }, "downloads": -1, "filename": "aws-google-auth-0.0.23.tar.gz", "has_sig": false, "md5_digest": "5c9155e9be7161e7e6804c093db46ea8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24872, "upload_time": "2018-04-03T07:10:15", "url": "https://files.pythonhosted.org/packages/22/be/3aca1d86bce7a765ecc91b12a7ff9ef1452f47aed3e949fbd54db174bc2c/aws-google-auth-0.0.23.tar.gz" } ], "0.0.24": [ { "comment_text": "", "digests": { "md5": "ba35f214d0abf3b3b5889aa358c87b75", "sha256": "065aa2348d4ce3926cafd549c1961d4c8e2aef7dcac359bef47eaf164b61e3d7" }, "downloads": -1, "filename": "aws-google-auth-0.0.24.tar.gz", "has_sig": false, "md5_digest": "ba35f214d0abf3b3b5889aa358c87b75", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25248, "upload_time": "2018-04-03T22:19:35", "url": "https://files.pythonhosted.org/packages/83/15/59311435b60053d200eb998869abe330adb5e38fac111015e29a26e73104/aws-google-auth-0.0.24.tar.gz" } ], "0.0.25": [ { "comment_text": "", "digests": { "md5": "228b762ccd7302da2c6a87a02ca31f6a", "sha256": "06fc4439cc77fcb6f591cea00b3cb9a5eba2cb8987414011c88081a354a36261" }, "downloads": -1, "filename": "aws-google-auth-0.0.25.tar.gz", "has_sig": false, "md5_digest": "228b762ccd7302da2c6a87a02ca31f6a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25245, "upload_time": "2018-05-02T21:53:32", "url": "https://files.pythonhosted.org/packages/99/56/15db78cd355bc8536b63a20eca35b3e0fc3047620b8cc0d54922f78f4746/aws-google-auth-0.0.25.tar.gz" } ], "0.0.26": [ { "comment_text": "", "digests": { "md5": "de0a1705208a47a9e53507c7f5f96c2e", "sha256": "b7acfe3b7ede71be38f3720d026add706f4a2f7accecc16c918f0ffd7f82cd85" }, "downloads": -1, "filename": "aws-google-auth-0.0.26.tar.gz", "has_sig": false, "md5_digest": "de0a1705208a47a9e53507c7f5f96c2e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26311, "upload_time": "2018-07-30T23:00:56", "url": "https://files.pythonhosted.org/packages/b0/22/f925a251e737ebf8ed346a53b4cff11f35e59649ede06deb025f54d309f5/aws-google-auth-0.0.26.tar.gz" } ], "0.0.27": [ { "comment_text": "", "digests": { "md5": "d0a1eb6f198b8a496258e0bfc3ef6429", "sha256": "4ed37e779585913aee1fd0ff0f46cb01d63627015f2bff695b1c74682a775c71" }, "downloads": -1, "filename": "aws-google-auth-0.0.27.tar.gz", "has_sig": false, "md5_digest": "d0a1eb6f198b8a496258e0bfc3ef6429", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27932, "upload_time": "2018-08-08T12:18:49", "url": "https://files.pythonhosted.org/packages/e5/33/d0e5128d395a3dfa4d5e0d1e2d46587aeb8fd4c99c867ea0ed1f425a1420/aws-google-auth-0.0.27.tar.gz" } ], "0.0.28": [ { "comment_text": "", "digests": { "md5": "b92b8d7bd79a1077f8da0835d0d87eba", "sha256": "aa4fdf74c67d47b18db902eeb7a9675a6095a6fc062beee65964935e52dafa83" }, "downloads": -1, "filename": "aws-google-auth-0.0.28.tar.gz", "has_sig": false, "md5_digest": "b92b8d7bd79a1077f8da0835d0d87eba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28532, "upload_time": "2018-10-15T12:57:29", "url": "https://files.pythonhosted.org/packages/34/b0/b377ee186b4a905b12cfb69743ab3c82b9f4363dab23add0e903b7ccfe2b/aws-google-auth-0.0.28.tar.gz" } ], "0.0.29": [ { "comment_text": "", "digests": { "md5": "c41391dcd0600988edb08809ec7816d3", "sha256": "2e0c16e71b814d0986b28c35d0e6dcbcec0ca2f496669ff9f2ec5bbbc53ea8e0" }, "downloads": -1, "filename": "aws-google-auth-0.0.29.tar.gz", "has_sig": false, "md5_digest": "c41391dcd0600988edb08809ec7816d3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28724, "upload_time": "2018-11-06T07:46:31", "url": "https://files.pythonhosted.org/packages/ed/43/3084e6ca736306addbe746aa659c87141e192dc800d099e4605dea39ac3a/aws-google-auth-0.0.29.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "19a0cf930f8be2d84d6b8af156bca239", "sha256": "5252f5fbafe5493a6aba046daca4a5936b468414f0c68383c132bec811d0e267" }, "downloads": -1, "filename": "aws-google-auth-0.0.3.tar.gz", "has_sig": false, "md5_digest": "19a0cf930f8be2d84d6b8af156bca239", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7291, "upload_time": "2017-06-15T08:25:58", "url": "https://files.pythonhosted.org/packages/91/0b/05156b1081d4f0c5ee66d74d1b39fc02860636c76de7e6e00ed67a6a1f15/aws-google-auth-0.0.3.tar.gz" } ], "0.0.30": [ { "comment_text": "", "digests": { "md5": "6cb8db5aaffaadbc807edd11ad3ea0ae", "sha256": "77b1e4c3f40a01cff356e352e5738426d071e8ceef9f0b6007983d633caeaa69" }, "downloads": -1, "filename": "aws-google-auth-0.0.30.tar.gz", "has_sig": false, "md5_digest": "6cb8db5aaffaadbc807edd11ad3ea0ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31429, "upload_time": "2019-01-20T21:05:56", "url": "https://files.pythonhosted.org/packages/0f/7b/2c80924b24ff765823d879302b4b231b45d5c0ad7f43b70879a88bf68a70/aws-google-auth-0.0.30.tar.gz" } ], "0.0.31": [ { "comment_text": "", "digests": { "md5": "0e4b5d6bf79d69a30e98b24b6bb0a300", "sha256": "e0ed3adc58d55078e9e6dde648324a719c60a54eeac3dea3d023ccdfe94d1b94" }, "downloads": -1, "filename": "aws-google-auth-0.0.31.tar.gz", "has_sig": false, "md5_digest": "0e4b5d6bf79d69a30e98b24b6bb0a300", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31896, "upload_time": "2019-03-27T08:46:10", "url": "https://files.pythonhosted.org/packages/8c/48/a7490adb5d29a15716bf7d7031320b30c6d114cb9fa2451c2dc112e3adff/aws-google-auth-0.0.31.tar.gz" } ], "0.0.32": [ { "comment_text": "", "digests": { "md5": "7403d64d8c02fa5031a142f6eaf6a528", "sha256": "7183f3d0451f6fd5fa87083985a9cac6177ce44c2a7f52b4f207e3a203b27e67" }, "downloads": -1, "filename": "aws-google-auth-0.0.32.tar.gz", "has_sig": false, "md5_digest": "7403d64d8c02fa5031a142f6eaf6a528", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32693, "upload_time": "2019-07-27T13:40:20", "url": "https://files.pythonhosted.org/packages/9a/e9/021dcafc1009f44b6bd555504753928d79b0941d2a2ba0b9321b07a7a150/aws-google-auth-0.0.32.tar.gz" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "477321a0bdad6f56fef50c5142b854cb", "sha256": "ac68234398a887024305b030c67be4962813ab0fe15446c3d2b93b69a2d4e705" }, "downloads": -1, "filename": "aws-google-auth-0.0.4.tar.gz", "has_sig": false, "md5_digest": "477321a0bdad6f56fef50c5142b854cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7324, "upload_time": "2017-06-15T08:32:36", "url": "https://files.pythonhosted.org/packages/02/e6/a21a19b399844d650a11f2c904f2f82a60dcd8146cb5619a036864c68b78/aws-google-auth-0.0.4.tar.gz" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "de7f992d958f60f8fee62ed4a1187f44", "sha256": "5f2c8ed04a0755d3b629baf6fd258ffe941d008a79a01519f05311237c2c377e" }, "downloads": -1, "filename": "aws-google-auth-0.0.5.tar.gz", "has_sig": false, "md5_digest": "de7f992d958f60f8fee62ed4a1187f44", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7336, "upload_time": "2017-06-16T00:18:06", "url": "https://files.pythonhosted.org/packages/d2/d4/6e083e2feb69223791664d26dfde8e31e9711effc446c6fefc6e1c9710fb/aws-google-auth-0.0.5.tar.gz" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "2a89e2c2ae04174ebbb8a96a8a52eda2", "sha256": "039fa3dc7eca0b0d2a2798c8ca95da81518fccc7a5dd216585ddb2d31d76ccda" }, "downloads": -1, "filename": "aws-google-auth-0.0.6.tar.gz", "has_sig": false, "md5_digest": "2a89e2c2ae04174ebbb8a96a8a52eda2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8436, "upload_time": "2017-07-10T12:58:50", "url": "https://files.pythonhosted.org/packages/2a/2f/c54b62d28af5a4d226b3cc2bce663db3a5d9cf08c579f85b50ef74d4e6b7/aws-google-auth-0.0.6.tar.gz" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "f055e9fdf7b2f8734cb5ed703df929b0", "sha256": "bdd2aaf26c355395c27b3bc3c0fd26ea47ba594a5959f7b957ab6d9d60432caa" }, "downloads": -1, "filename": "aws-google-auth-0.0.7.tar.gz", "has_sig": false, "md5_digest": "f055e9fdf7b2f8734cb5ed703df929b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13309, "upload_time": "2017-07-12T09:56:56", "url": "https://files.pythonhosted.org/packages/61/83/f871aa5351dcb81f7c8693ad54d0999d00c7598b1d175066a4dd06cd4d2c/aws-google-auth-0.0.7.tar.gz" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "6f9726fc330db13188672fa6d6fce6fb", "sha256": "6e39b951d95e02a73349b9d65654baeb1b0ec699d2de74060d042e07b9e5a88c" }, "downloads": -1, "filename": "aws-google-auth-0.0.8.tar.gz", "has_sig": false, "md5_digest": "6f9726fc330db13188672fa6d6fce6fb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13353, "upload_time": "2017-07-13T04:56:11", "url": "https://files.pythonhosted.org/packages/0c/42/64f8b60d0f5f41595d58da5912269797fd0c26d026e30b44fb1dabb55952/aws-google-auth-0.0.8.tar.gz" } ], "0.0.9": [ { "comment_text": "", "digests": { "md5": "e8df7510b8eb5928c2bc02e02f18694c", "sha256": "93f439a068d8c22ecb258500883902fe57fd74bc27bcc19b1f4787fae3f0981d" }, "downloads": -1, "filename": "aws-google-auth-0.0.9.tar.gz", "has_sig": false, "md5_digest": "e8df7510b8eb5928c2bc02e02f18694c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11127, "upload_time": "2017-07-24T09:39:25", "url": "https://files.pythonhosted.org/packages/d5/a5/0af02003190e6841701b51c8447f4a5c0642ea399f9c6bbc25d166ddfef4/aws-google-auth-0.0.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "7403d64d8c02fa5031a142f6eaf6a528", "sha256": "7183f3d0451f6fd5fa87083985a9cac6177ce44c2a7f52b4f207e3a203b27e67" }, "downloads": -1, "filename": "aws-google-auth-0.0.32.tar.gz", "has_sig": false, "md5_digest": "7403d64d8c02fa5031a142f6eaf6a528", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32693, "upload_time": "2019-07-27T13:40:20", "url": "https://files.pythonhosted.org/packages/9a/e9/021dcafc1009f44b6bd555504753928d79b0941d2a2ba0b9321b07a7a150/aws-google-auth-0.0.32.tar.gz" } ] }