{ "info": { "author": "Venth", "author_email": "artur.krysiak.warszawa@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: End Users/Desktop", "Intended Audience :: System Administrators", "License :: OSI Approved :: Python Software Foundation License", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", "Programming Language :: Python" ], "description": "# aws-adfs\n[![PyPI version](https://badge.fury.io/py/aws-adfs.svg)](https://badge.fury.io/py/aws-adfs)\n[![Travis build](https://api.travis-ci.org/venth/aws-adfs.svg?branch=master)](https://api.travis-ci.org/venth/aws-adfs.svg?branch=master)\n\nThe project provides command line tool - `aws-adfs` to ease aws cli authentication against ADFS (multi factor authentication with active directory) and\n\n## `aws-adfs` command line tool\nThanks to [Brandond](https://github.com/brandond) contribution - \"Remove storage of credentials, in favor of storing ADFS session cookies\"\naws-adfs:\n\n> allows you to re-login to STS without\n> entering credentials for an extended period of time, without having to store the user's actual credentials.\n> It also lets an organization control the period in which a user can re-login to STS without entering credentials,\n> by altering the ADFS session lifetime.\n\nThanks to [Brandond](https://github.com/brandond) contribution - \"Add support for legacy aws_security_token key in credentials file\"\naws-adfs supports ansible by providing two keys with security token:\n* AWS_SESSION_TOKEN and\n* AWS_SECURITY_TOKEN\n\nThanks to [Brandond](https://github.com/brandond) contribution - \"Add support for Kerberos SSO on Windows via requests_negotiate_sspi\"\n* on windows os will be used Security Support Provider Interface\n\n### Compatibility\n\nAs of version 0.2.0, this tool acts on the 'default' profile unless an alternate profile name has been specified on the command line or in your environment. Previous versions acted on the 'adfs' profile by default.\n\n### MFA integration\n\naws-adfs integrates with:\n* [duo security](https://duo.com) MFA provider with support for FIDO U2F hardware authenticator\n* [Symantec VIP](https://vip.symantec.com/) MFA provider\n* [RSA SecurID](https://www.rsa.com/) MFA provider\n\n# Installation\n\n* user local installation\n\n ```\n pip install aws-adfs\n ```\n\n Please note, that you need to add $HOME/.local/bin to your PATH\n\n* system wide installation\n\n ```\n sudo pip install aws-adfs\n ```\n\n* virtualenvs\n\n ```\n virtualenv -p /usr/bin/python2.7 aws-adfs\n source aws-adfs/bin/activate\n pip install aws-adfs\n ...\n ...\n deactivate\n ```\n\n* Windows 10\n\n - Install latest supported Visual C++ downloads from Microsoft for Visual Studio 2015, 2017 and 2019:\n - https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads\n - https://aka.ms/vs/16/release/vc_redist.x64.exe\n - Install Python 3.7 from Microsoft Store:\n - https://www.microsoft.com/en-us/p/python-37/9nj46sx7x90p\n - Start PowerShell as Administrator\n - Go to `C:\\Program Files`:\n ```\n C:\n cd 'C:\\Program Files\\'\n ```\n - Create virtual env:\n ```\n python3 -m venv aws-adfs\n ```\n - Install `aws-adfs`:\n ```\n & 'C:\\Program Files\\aws-adfs\\Scripts\\pip' install aws-adfs\n ```\n - Run it:\n ```\n & 'C:\\Program Files\\aws-adfs\\Scripts\\aws-adfs' login --adfs-host=your-adfs-hostname\n ```\n\n# Examples of usage\n\n## `aws-adfs`\n* login to your adfs host with disabled ssl verification on aws cli profile: adfs\n\n ```\n aws-adfs login --adfs-host=your-adfs-hostname --no-ssl-verification\n ```\n\n and verification\n\n ```\n aws --profile=adfs s3 ls\n ```\n\n* login to your adfs host with disabled ssl verification on specified aws cli profile: specified-profile\n\n ```\n aws-adfs login --profile=specified-profile --adfs-host=your-adfs-hostname --no-ssl-verification\n ```\n\n and verification\n\n ```\n aws --profile=specified-profile s3 ls\n ```\n\n* login to your adfs host within ansible playbook\n\n ```\n ---\n - name: \"Auth sts aws\"\n command: \"aws-adfs login --adfs-host sts.example.com --env --stdout --role-arn arn:aws:iam::000123456789:role/ADMIN\"\n register: sts_result\n environment:\n - username: \"{{ ansible_user }}@example.com\"\n - password: \"{{ ansible_ssh_pass }}\"\n \n - name: \"Set sts facts\"\n set_fact:\n sts: \"{{ sts_result.stdout | from_json }}\"\n \n - name: \"List s3 Buckets\"\n aws_s3_bucket_facts:\n aws_access_key: \"{{\u00a0sts.AccessKeyId }}\"\n aws_secret_key: \"{{\u00a0sts.SecretAccessKey }}\"\n security_token: \"{{\u00a0sts.SessionToken }}\"\n region: \"us-east-1\"\n register: buckets\n \n - name: \"Print Buckets\"\n debug:\n var: buckets\n ```\n\n* login to your adfs host by passing username and password credentials via a file\n\n ```\n aws-adfs login --adfs-host=your-adfs-hostname --authfile=/path/and/file/name\n ```\n\n Auth file should be in format of\n\n ```\n [profile_name]\n username = your_username\n password = your_password\n ```\n\n* help, help, help?\n ```\n $ aws-adfs --help\n Usage: aws-adfs [OPTIONS] COMMAND [ARGS]...\n\n Options:\n --version Show current tool version\n --help Show this message and exit.\n\n Commands:\n list lists available profiles\n login Authenticates an user with active directory...\n reset removes stored profile\n ```\n\n ```\n $ aws-adfs list --help\n Usage: aws-adfs list [OPTIONS]\n\n lists available profiles\n\n Options:\n --version Show current tool version\n --help Show this message and exit.\n ```\n\n ```\n $ aws-adfs login --help\n Usage: aws-adfs login [OPTIONS]\n \n Authenticates an user with active directory credentials\n \n Options:\n --profile TEXT AWS cli profile that will be authenticated.\n After successful authentication just use:\n aws --profile \n ...\n --region TEXT The default AWS region that this script will\n connect\n to for all API calls\n --ssl-verification / --no-ssl-verification\n SSL certificate verification: Whether or not\n strict certificate\n verification is done,\n False should only be used for dev/test\n --adfs-ca-bundle TEXT Override CA bundle for SSL certificate\n verification for ADFS server only.\n --adfs-host TEXT For the first time for a profile it has to\n be provided, next time for the same profile\n it will be loaded from the stored\n configuration\n --output-format [json|text|table]\n Output format used by aws cli\n --provider-id TEXT Provider ID, e.g urn:amazon:webservices\n (optional)\n --s3-signature-version [s3v4] s3 signature version: Identifies the version\n of AWS Signature to support for\n authenticated requests. Valid values: s3v4\n --env Read username, password from environment\n variables (username and password).\n --stdin Read username, password from standard input\n separated by a newline.\n --authfile TEXT Read username, password from a local file\n (optional)\n --stdout Print aws_session_token in json on stdout.\n --printenv Output commands to set AWS_ACCESS_KEY_ID,\n AWS_SECRET_ACCESS_KEY, AWS_SESSION_TOKEN,\n AWS_DEFAULT_REGION environmental variables\n instead of saving them to the aws\n configuration file.\n --role-arn TEXT Predefined role arn to selects, e.g. aws-\n adfs login --role-arn arn:aws:iam::123456789\n 012:role/YourSpecialRole\n --session-duration INTEGER Define the amount of seconds you want to\n establish your STS session, e.g. aws-adfs\n login --session-duration 3600\n --assertfile TEXT Use SAML assertion response from a local\n file\n --sspi / --no-sspi Whether or not to use Kerberos SSO\n authentication via SSPI, which may not work\n in some environments.\n --help Show this message and exit.\n ```\n ```\n $ aws-adfs reset --help 13:39\n Usage: aws-adfs reset [OPTIONS]\n\n removes stored profile\n\n Options:\n --profile TEXT AWS cli profile that will be removed\n --help Show this message and exit.\n ```\n\n# Known issues\n* duo-security\n\n `Error: Cannot begin authentication process. The error response: {\"message\": \"Unknown authentication method.\", \"stat\": \"FAIL\"}`\n\n Please setup preferred auth method in duo-security settings (settings' -> 'My Settings & Devices').\n\n* USB FIDO U2F does not work in Windows Subsystem for Linux (WSL)\n\n `OSError: [Errno 2] No such file or directory: '/sys/class/hidraw'`\n\n USB devices are not accessible in WSL, please install and run `aws-adfs` on the Windows 10 host and then access the credentials in WSL from the filesystem. Example:\n\n ```\n export AWS_CONFIG_FILE=/mnt/c/Users/username/.aws/config\n export AWS_SHARED_CREDENTIALS_FILE=/mnt/c/Users/username/.aws/credentials\n ```\n\n* FIDO U2F devices are not detected on Windows 10 build 1903 or newer\n\n Running `aws-adfs` as Administrator is required since Windows 10 build 1903 to access FIDO U2F devices, cf. https://github.com/Yubico/python-fido2/issues/55)\n\n* in cases of trouble with lxml please install\n\n ```\n sudo apt-get install python-dev libxml2-dev libxslt1-dev zlib1g-dev\n ```\n* in cases of trouble with OSX Sierra (obsolete OpenSSL), upgrade OpenSSL. Example:\n ```\n brew upgrade openssl\n ```\n AND add explicit directive to .bash_profile:\n ```\n export PATH=$(brew --prefix openssl)/bin:$PATH\n ```\n\n* python 2.6 is not supported\n* python 3.2 is not supported\n* python 3.3 is not supported\n\n\n# Credits\n* [Brandond](https://github.com/brandond) for: Remove storage of credentials, in favor of storing ADFS session cookies\n* [Brandond](https://github.com/brandond) for: Add support for legacy aws_security_token key in credentials file\n* [Brandond](https://github.com/brandond) for: Store last username in profile config; use it as default for prompt\n* [Brandond](https://github.com/brandond) for: python 3 compatibility\n* [Brandond](https://github.com/brandond) for: Add support for Kerberos SSO on Windows via requests_negotiate_sspi\n* [Brandond](https://github.com/brandond) for: ssl_verification must be a str\n* [Brandond](https://github.com/brandond) for: Move pytest-runner out of setup-requires\n* [Brandond](https://github.com/brandond) for: Improve handling of role selection\n* [Brandond](https://github.com/brandond) for: Improve handling of errors caused by excessive cookie growth\n* [Brandond](https://github.com/brandond) for: Default to 'default' profile, in line with other AWS tools\n* [kwhitlock](https://github.com/kwhitlock) for: Added extra option \"--provider-id\"\n* [SydOps](https://github.com/SydOps) for: add additional information in list command's output\n* [eric-nord](https://github.com/eric-nord) for: bringing topic of [duo security](https://duo.com) MFA integration\n* [roblugton](https://github.com/roblugton) for: Fix formatting in README.md\n* [cliv](https://github.com/cliv) for: pointing out the issue with missing preferred device for duo-security and providing workaround\n* [AndrewFarley](https://github.com/AndrewFarley) for: Bug in parsing Duo host and signature, backwards compatible\n* [eikenb](https://github.com/eikenb) for: Version 0.3.4 returns no roles - thanks for vigilance of [eikenb](https://github.com/eikenb) spoiled egg was identified\n* [eikenb](https://github.com/eikenb) for: add login argument to accept username/password from stdin\n* [irgeek](https://github.com/irgeek) for: Add Symantec VIP Access support\n* [Brandond](https://github.com/brandond) for: Fix Negotiate auth on non-domain-joined Windows hosts\n* [giafar](https://github.com/giafar) for: Role arn as parameter\n* [zanettibo](https://github.com/zanettibo) for: Add support for Ansible Tower/AWX workflow authentication\n* [anthoneous](https://github.com/anthoneous) and [KyleJamesWalker](https://github.com/KyleJamesWalker) for: add session duration flag\n* [KyleJamesWalker](https://github.com/KyleJamesWalker) for: Allow phone call authentication\n* [KyleJamesWalker](https://github.com/KyleJamesWalker) for: Change default profile to default\n* [kwhitlock](https://github.com/kwhitlock) for: Feature/read username and password from file\n* [avoidik](https://github.com/avoidik) for: Workaround of Symantec VIP obfuscated form\n* [leonardo-test](https://github.com/leonardo-test) for fix: The --env flag is not being called and therefore using the env parameter will not work.\n* [NotMrSteve](https://github.com/NotMrSteve) for: Add RSA SecurID MFA\n* [JLambeth](https://github.com/JLambeth) for: Added flag for disabling Kerberos SSO authentication via SSPI\n* [bghinkle](https://github.com/bghinkle) for: Fix Duo API change - follow result_url and return cookie from result\n* [jan-molak](https://github.com/jan-molak) for: Corrected the XPath expression to work with the latest version of AWS\u2026\n* [NotMrSteve](https://github.com/NotMrSteve) for: Save duo session cookies\n* [pdecat](https://github.com/pdecat) for: Fallback on prompt if env, stdin or auth file do not provide both username and password\n* [0x91](https://github.com/0x91) for: Support for Azure MFA Server\n* [pdecat](https://github.com/pdecat) for: Fix Duo authentication initiation failure messages \n* [tommywo](https://github.com/tommywo) for: save provider_id config\n* [budzejko](https://github.com/budzejko) for: Add support for adfs-ca-bundle option\n* [rinrinne](https://github.com/rinrinne) for: Respect AWS_DEFAULT_PROFILE if defined\n* [mjernsell](https://github.com/mjernsell) for: Add support for AzureMfaAuthentication\n* [kfattig](https://github.com/kfattig) for: Handle sspi like other config options\n* [pdecat](https://github.com/pdecat) for\n * lxml 4.4.0 dropped support for python 3.4\n * Add Duo U2F support\n * Use MozillaCookieJar as LWPCookieJar has an issue on Windows when cookies have an 'expires' date too far in the future and they are converted from timestamp to datetime\n * Fix python 2.7 compatibility\n * Document Windows 10 and WSL usage/issues\n * Run tests with python 3.6, 3.7 and 3.8-dev\n * Add options to trigger or not the default authentication method when U2F is available\n * Fix AttributeError: 'generator' object has no attribute 'append' on python3", "description_content_type": "text/markdown", "docs_url": null, "download_url": "https://github.com/venth/aws-adfs/tarball/1.19.0", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/venth/aws-adfs", "keywords": "aws adfs console tool", "license": "", "maintainer": "Venth", "maintainer_email": "", "name": "aws-adfs", "package_url": "https://pypi.org/project/aws-adfs/", "platform": "", "project_url": "https://pypi.org/project/aws-adfs/", "project_urls": { "Download": "https://github.com/venth/aws-adfs/tarball/1.19.0", "Homepage": "https://github.com/venth/aws-adfs" }, "release_url": "https://pypi.org/project/aws-adfs/1.19.0/", "requires_dist": null, "requires_python": "", "summary": "AWS Cli authenticator via ADFS - small command-line tool to authenticate via ADFS and assume chosen role", "version": "1.19.0" }, "last_serial": 5975075, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "f7bf9c228fc95bb2808e7fedfc889564", "sha256": "cbe36c45ef43e127f7a2947cfd8cbee353cac15ecac737a46fe2a70fc8e1fbd8" }, "downloads": -1, "filename": "aws-adfs-0.0.1.tar.gz", "has_sig": false, "md5_digest": "f7bf9c228fc95bb2808e7fedfc889564", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6720, "upload_time": "2016-06-25T12:24:26", "url": "https://files.pythonhosted.org/packages/d0/1c/c9c056cf9efc1ddbd9f5b14ffc4913d911ba8d5de633497d7bbfb64312bd/aws-adfs-0.0.1.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "584a5c62f36a98749dae36dbeddfc86f", "sha256": "0b632a99ad053a64bb660edf6e14a3f1cbe0c0c8b9dde899101f96076c85ff4e" }, "downloads": -1, "filename": "aws-adfs-0.0.2.tar.gz", "has_sig": false, "md5_digest": "584a5c62f36a98749dae36dbeddfc86f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7024, "upload_time": "2016-06-25T12:40:05", "url": "https://files.pythonhosted.org/packages/fc/b9/d97904a6bf685830f8aaaa52836986b537b879fde9d8bf38af37f90140d3/aws-adfs-0.0.2.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "13f2c9168eb35a457371dbe1c1174fdb", "sha256": "c37ba1259b5c9388032eaed5074df11bd22ba13f6b9969852667dfa22bdce57a" }, "downloads": -1, "filename": "aws-adfs-0.0.3.tar.gz", "has_sig": false, "md5_digest": "13f2c9168eb35a457371dbe1c1174fdb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7053, "upload_time": "2016-06-25T12:44:37", "url": "https://files.pythonhosted.org/packages/be/95/b78b39573eb42c72f4923b5e46b7f9a496dc5156dfdf700fb832f07440fe/aws-adfs-0.0.3.tar.gz" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "5820aea2a3cf3e2db61b0930dbe3d3e9", "sha256": "6204c553cb83db5d10164854367c34e34e601ee996ccbd5763aa2ec8d5b0410b" }, "downloads": -1, "filename": "aws-adfs-0.0.4.tar.gz", "has_sig": false, "md5_digest": "5820aea2a3cf3e2db61b0930dbe3d3e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7458, "upload_time": "2016-07-08T13:22:11", "url": "https://files.pythonhosted.org/packages/ca/f2/f093601c24f01ba981dcf26cedb3d6dfa8b6ddaf5e17c2b92bff0a867806/aws-adfs-0.0.4.tar.gz" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "e0b5f48061fc7bb1fcfbfafc77ec19bc", "sha256": "62a6681c213e754174ac2fcba84f3684ba9aff78ee0af55b125529d7b447bd67" }, "downloads": -1, "filename": "aws-adfs-0.0.5.tar.gz", "has_sig": false, "md5_digest": "e0b5f48061fc7bb1fcfbfafc77ec19bc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7581, "upload_time": "2016-07-10T07:32:27", "url": "https://files.pythonhosted.org/packages/0e/fd/130cd20f13dd738ce2a6cbbcb0587daf1a12dce442a12850139ffcbf912f/aws-adfs-0.0.5.tar.gz" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "2c12c96327a44bf591df7f6aee991c05", "sha256": "bb7bb0c0a419b70af4d18b97e98c303a9dc6b66c4464d8cbc20497381bfd11ce" }, "downloads": -1, "filename": "aws-adfs-0.0.6.tar.gz", "has_sig": false, "md5_digest": "2c12c96327a44bf591df7f6aee991c05", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7718, "upload_time": "2016-07-10T11:47:06", "url": "https://files.pythonhosted.org/packages/48/3e/80ad3479e81176315853a9fc279ae796c5bee72f1640d8a6fcfba18db687/aws-adfs-0.0.6.tar.gz" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "ad2ad14a140b0fdc47234cc933172819", "sha256": "aec614b08d303476b0f3c588df9a941a15f02c8661e0e1525e4e5ae241c60fd3" }, "downloads": -1, "filename": "aws-adfs-0.0.7.tar.gz", "has_sig": false, "md5_digest": "ad2ad14a140b0fdc47234cc933172819", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7872, "upload_time": "2016-07-12T04:31:53", "url": "https://files.pythonhosted.org/packages/62/ef/ec9bf4ad974c431fe64718293655c3c55c06a4a80117dd602e0881cc12ee/aws-adfs-0.0.7.tar.gz" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "a2bb5dee43acf5ddc4a21d78613daef0", "sha256": "34da3033633961dab9f8d973001883774ce6e99df4733dbacbfa171b5606bfbe" }, "downloads": -1, "filename": "aws-adfs-0.0.8.tar.gz", "has_sig": false, "md5_digest": "a2bb5dee43acf5ddc4a21d78613daef0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11713, "upload_time": "2016-07-19T06:20:07", "url": "https://files.pythonhosted.org/packages/96/e4/55f0aab3e65cff6711ce15f11e2b60b233210cdea23363cbeb17c0124895/aws-adfs-0.0.8.tar.gz" } ], "0.0.9": [ { "comment_text": "", "digests": { "md5": "ce957d20303a5fc80038924f35de0bf5", "sha256": "1d8b8f4013fb108f1d3eee1d0a146f72953908ecd8345c1492c502013e284477" }, "downloads": -1, "filename": "aws-adfs-0.0.9.tar.gz", "has_sig": false, "md5_digest": "ce957d20303a5fc80038924f35de0bf5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11612, "upload_time": "2016-07-22T07:02:02", "url": "https://files.pythonhosted.org/packages/a3/b8/842387fea63b68408cc397e0c1aa4b9cd3660ab0a78723661b1d3d70dc71/aws-adfs-0.0.9.tar.gz" } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "cc679026b9432ce1ed82521199e80da6", "sha256": "0623b83395b9026d418c3c4dc093567fb16ab31968c57ab571e6b716dc88de30" }, "downloads": -1, "filename": "aws-adfs-0.1.0.tar.gz", "has_sig": false, "md5_digest": "cc679026b9432ce1ed82521199e80da6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11876, "upload_time": "2016-08-14T05:51:59", "url": "https://files.pythonhosted.org/packages/78/66/91521b47afb6f3427c103356410db4522d178bd20f026386a875619c002a/aws-adfs-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "38fe65717398e17638cca86d12f46633", "sha256": "7b71c521a71124c7344b76955a4c963ac1b5696a71043326805453f58dd81950" }, "downloads": -1, "filename": "aws-adfs-0.1.1.tar.gz", "has_sig": false, "md5_digest": "38fe65717398e17638cca86d12f46633", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11903, "upload_time": "2016-08-18T19:55:54", "url": "https://files.pythonhosted.org/packages/60/8d/43eee1390b24f5edf1612b39f2beeaa08aa3071b9e9ed1f23293f0ecb745/aws-adfs-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "d5460a21d87339f0bbf74da3579d3bd1", "sha256": "01bb926d1c1fcaf011482a9dc9a7a9299c6614eb902c723434e45292f1685e9e" }, "downloads": -1, "filename": "aws-adfs-0.1.2.tar.gz", "has_sig": false, "md5_digest": "d5460a21d87339f0bbf74da3579d3bd1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12391, "upload_time": "2016-08-27T20:55:32", "url": "https://files.pythonhosted.org/packages/e4/3e/8fd4a524ee86c31845b8dbdadc64f983c71c60feac76e36e9c9142331c52/aws-adfs-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "0551f657213e602b88ccfc6172a8cf16", "sha256": "a262b451091e819295d8c7b1fbe3925d1b387211030c1dc8952f558c1545c5ee" }, "downloads": -1, "filename": "aws-adfs-0.1.3.tar.gz", "has_sig": false, "md5_digest": "0551f657213e602b88ccfc6172a8cf16", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12416, "upload_time": "2016-08-30T04:37:09", "url": "https://files.pythonhosted.org/packages/18/98/50f1e081b2a1e85832d3716f03308c181b56810bb93b8c96b718289b0188/aws-adfs-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "24f4df5e82fc309c18cf4e178e26917f", "sha256": "3446d7d458866cc7bdc2effc83b486652500dcb5df0173f1b1160caddd0e2b1a" }, "downloads": -1, "filename": "aws-adfs-0.1.4.tar.gz", "has_sig": false, "md5_digest": "24f4df5e82fc309c18cf4e178e26917f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12550, "upload_time": "2016-10-04T04:02:27", "url": "https://files.pythonhosted.org/packages/20/2a/08707b07c0e7fccad56e4838f176680cb7733cb35022a7c24a1ae462cd50/aws-adfs-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "d3a7cb3b26e782a5a53d14c10c51f9cb", "sha256": "f26443e0dc700eacabef69f003ec68f7f86a3611456e2fd5a5d788097ced33cd" }, "downloads": -1, "filename": "aws-adfs-0.1.5.tar.gz", "has_sig": false, "md5_digest": "d3a7cb3b26e782a5a53d14c10c51f9cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12752, "upload_time": "2016-10-11T15:30:08", "url": "https://files.pythonhosted.org/packages/23/80/0a1da375eb29d11be16624678a6a39cf82945bbb1695fadbf0005cdf820f/aws-adfs-0.1.5.tar.gz" } ], "0.10.1": [ { "comment_text": "", "digests": { "md5": "04cd6ecd913b30e38f4ca6f1927ddd85", "sha256": "9f6b353467da18c1222aea4d5f0906f4781dfc81246030922e412e6e437c8262" }, "downloads": -1, "filename": "aws-adfs-0.10.1.tar.gz", "has_sig": false, "md5_digest": "04cd6ecd913b30e38f4ca6f1927ddd85", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44925, "upload_time": "2018-04-14T12:37:57", "url": "https://files.pythonhosted.org/packages/da/51/aee3b33c34678f36b3fbdaf711c538ee5502fc8d26c89d199a8a8bbc2333/aws-adfs-0.10.1.tar.gz" } ], "0.11.0": [ { "comment_text": "", "digests": { "md5": "535ecae96ba6776fbe84b396a2a617e3", "sha256": "73530c8ef1968b515917412d205742674ecb2ef004e19a77c57c393bec4e7ced" }, "downloads": -1, "filename": "aws-adfs-0.11.0.tar.gz", "has_sig": false, "md5_digest": "535ecae96ba6776fbe84b396a2a617e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45135, "upload_time": "2018-05-10T17:14:37", "url": "https://files.pythonhosted.org/packages/5c/d1/782606d716ea89d5e5ba891d2695f8a47ec52963ce127ff412287b6ed760/aws-adfs-0.11.0.tar.gz" } ], "0.11.1": [ { "comment_text": "", "digests": { "md5": "1e313b9c1a1035753b05fea8ae3578f7", "sha256": "da9d4d77c974fffd143af95b6977cc9610ede55a36a5773aedf2e218ba0964ed" }, "downloads": -1, "filename": "aws-adfs-0.11.1.tar.gz", "has_sig": false, "md5_digest": "1e313b9c1a1035753b05fea8ae3578f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45270, "upload_time": "2018-06-20T21:19:38", "url": "https://files.pythonhosted.org/packages/90/6c/9024b2cab889aa045c41d88bbf121ff2388fd949eb39aaf3f9774b33d1b6/aws-adfs-0.11.1.tar.gz" } ], "0.12.0": [ { "comment_text": "", "digests": { "md5": "9d5fb1bd58eadb66a8b21de86f254cc6", "sha256": "86dd134721dfb7a54d269d99ac87840b96de152bcce3fc606d05243383a959b2" }, "downloads": -1, "filename": "aws-adfs-0.12.0.tar.gz", "has_sig": false, "md5_digest": "9d5fb1bd58eadb66a8b21de86f254cc6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45800, "upload_time": "2018-07-05T04:39:55", "url": "https://files.pythonhosted.org/packages/a3/e7/85bfb58aea77798bd82be4d2add2d663573f9ad6499ea066a3fa1810b8b4/aws-adfs-0.12.0.tar.gz" } ], "0.12.1": [ { "comment_text": "", "digests": { "md5": "b0a968f4fc5cf6c905b7c4e91ac5f5d7", "sha256": "72725d7005252b96ccfa9719fe4beec2b86301bff894d4d97a50fc1d05393fd8" }, "downloads": -1, "filename": "aws-adfs-0.12.1.tar.gz", "has_sig": false, "md5_digest": "b0a968f4fc5cf6c905b7c4e91ac5f5d7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46036, "upload_time": "2018-08-25T08:35:23", "url": "https://files.pythonhosted.org/packages/f2/4f/b2e5a9d9632fce97b4233745889bde6c2f081d973b2a329d8f5429ac1b1f/aws-adfs-0.12.1.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "b925ed956e338a32bc02e65309bab3d4", "sha256": "c925a517cd50c5ad74d51acf0b20dd61935d50c0bc4a7426544d08c089a87a2d" }, "downloads": -1, "filename": "aws-adfs-0.2.0.tar.gz", "has_sig": false, "md5_digest": "b925ed956e338a32bc02e65309bab3d4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12891, "upload_time": "2016-11-05T12:15:24", "url": "https://files.pythonhosted.org/packages/be/90/97f86c5f3d8fbb60f214c7318e0c34eaca20249bcbd809782a4bb094e0e3/aws-adfs-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "60c6b8936f8e08b124604d644d37ea99", "sha256": "49100a854a602a5173250a1f5f953dfa324afbaef2fc9d9a0a36708def300653" }, "downloads": -1, "filename": "aws-adfs-0.2.1.tar.gz", "has_sig": false, "md5_digest": "60c6b8936f8e08b124604d644d37ea99", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13937, "upload_time": "2017-02-16T20:16:40", "url": "https://files.pythonhosted.org/packages/1a/98/ec1a16faf6572b4ae2310e58bdfd8adbf255cba7aca507ebd7211951d791/aws-adfs-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "740bf16eb8b17601e9223ab761f25bd7", "sha256": "af82eeb672343b57f68755d42576a36365e73fe04d1c6d6ec5325e96e507ad7e" }, "downloads": -1, "filename": "aws-adfs-0.2.2.tar.gz", "has_sig": false, "md5_digest": "740bf16eb8b17601e9223ab761f25bd7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14043, "upload_time": "2017-03-01T05:08:55", "url": "https://files.pythonhosted.org/packages/2b/b3/e12d98ef2f4d781c74ec81d0c6a18f40ca59994a3e9114c689bb2271b805/aws-adfs-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "fa24df29f9028b05b5ec5f6104d98ebc", "sha256": "25d0b717ab898deaa04aecf5c3e34cb256948c68d87a2a0b1f58bdb3cf97508e" }, "downloads": -1, "filename": "aws-adfs-0.2.3.tar.gz", "has_sig": false, "md5_digest": "fa24df29f9028b05b5ec5f6104d98ebc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14473, "upload_time": "2017-03-05T06:44:41", "url": "https://files.pythonhosted.org/packages/8d/37/b7f559e1ddbf1a2b25dbc3650c088c2284d513a0f0fed80bc8525a5b9af9/aws-adfs-0.2.3.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "2e5a8433f7e7eb03d9a9d792fcd10ad9", "sha256": "1ce69f12d97cf2ff6079d088a0a4e2ecb6b906df141d1a5168776777554cfcab" }, "downloads": -1, "filename": "aws-adfs-0.3.0.tar.gz", "has_sig": false, "md5_digest": "2e5a8433f7e7eb03d9a9d792fcd10ad9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16653, "upload_time": "2017-03-27T18:29:29", "url": "https://files.pythonhosted.org/packages/94/2d/c2c1541f352311cc2f82a8f9cb2437f71599560ae6522ee44fa2b9d58f72/aws-adfs-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "3e97c2a9517ec04f47a050866c9c966f", "sha256": "76468156582dbf35ad8ece4aca0a715e4b14d9f7deee1f86fa84093ad3ba0081" }, "downloads": -1, "filename": "aws-adfs-0.3.1.tar.gz", "has_sig": false, "md5_digest": "3e97c2a9517ec04f47a050866c9c966f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16685, "upload_time": "2017-04-04T19:30:34", "url": "https://files.pythonhosted.org/packages/88/d1/404847f105c2779159dd9a50a4faf54e5fb2a6540a068036d6585b6388e2/aws-adfs-0.3.1.tar.gz" } ], "0.3.11": [ { "comment_text": "", "digests": { "md5": "eeed1c8e306e287723ba5fd4362851c4", "sha256": "902996d0e07e60a509cf5fe4f46f295e4bfad6070147e50bff74a0abbf3468e2" }, "downloads": -1, "filename": "aws-adfs-0.3.11.tar.gz", "has_sig": false, "md5_digest": "eeed1c8e306e287723ba5fd4362851c4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38210, "upload_time": "2017-08-13T18:35:05", "url": "https://files.pythonhosted.org/packages/71/7d/a667c03d84697320aacfdf13032608bf416fdb12c8272f059e817343344f/aws-adfs-0.3.11.tar.gz" } ], "0.3.12": [ { "comment_text": "", "digests": { "md5": "ca36bf081277320863a8e5ba60754efb", "sha256": "3b052b3535aa4a6a7efd4529d2a4279ddd26fc49112c9a6bf77a38c62c474771" }, "downloads": -1, "filename": "aws-adfs-0.3.12.tar.gz", "has_sig": false, "md5_digest": "ca36bf081277320863a8e5ba60754efb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38362, "upload_time": "2017-08-14T11:31:09", "url": "https://files.pythonhosted.org/packages/b6/bd/6a571eaf5e8cc6ccda9413f8e432e629ba3458a41044200ca19b15315460/aws-adfs-0.3.12.tar.gz" } ], "0.3.13": [ { "comment_text": "", "digests": { "md5": "38a2c8c89513124c06eb0d37d4849107", "sha256": "9ddc8c7157da4feffb24ec02a1b267d66874047ba1af9c2e232b9b86321dc508" }, "downloads": -1, "filename": "aws-adfs-0.3.13.tar.gz", "has_sig": false, "md5_digest": "38a2c8c89513124c06eb0d37d4849107", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39517, "upload_time": "2017-09-17T19:43:41", "url": "https://files.pythonhosted.org/packages/35/ed/c61209643c40fdb92e4de0083439407c776c5ca6bcc19dff742b40e03455/aws-adfs-0.3.13.tar.gz" } ], "0.3.14": [ { "comment_text": "", "digests": { "md5": "38272a08286f5e3369e1fb11ddcc2193", "sha256": "6d2deb6dcfb51e176cdc6b0a8840f6d031ba8a3d1b2565909982987dc2e28861" }, "downloads": -1, "filename": "aws-adfs-0.3.14.tar.gz", "has_sig": false, "md5_digest": "38272a08286f5e3369e1fb11ddcc2193", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39662, "upload_time": "2017-09-19T06:43:15", "url": "https://files.pythonhosted.org/packages/aa/cb/1e53d8090ac08bc1c4cc3132afc3e69425ba58ea04cb6d17924d23e5bf0a/aws-adfs-0.3.14.tar.gz" } ], "0.3.15": [ { "comment_text": "", "digests": { "md5": "f4d338344e8ce79e01ca3f89a865ee48", "sha256": "009fde05f2ff4fd54a362007479e9a222499623903b0cb48bfa0ca62ee7688a7" }, "downloads": -1, "filename": "aws-adfs-0.3.15.tar.gz", "has_sig": false, "md5_digest": "f4d338344e8ce79e01ca3f89a865ee48", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40049, "upload_time": "2017-10-04T20:26:54", "url": "https://files.pythonhosted.org/packages/e0/3f/30750e10afd52651ddca2c3ac7bc0de1b95f3015b1392d708312b271e940/aws-adfs-0.3.15.tar.gz" } ], "0.3.16": [ { "comment_text": "", "digests": { "md5": "d18ac2f90edebbf13afe11128e6b0cec", "sha256": "75b4bc476ac473d4fd6e60245d24c3b08be67d6854b03df4646c4d98c78b44da" }, "downloads": -1, "filename": "aws-adfs-0.3.16.tar.gz", "has_sig": false, "md5_digest": "d18ac2f90edebbf13afe11128e6b0cec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40075, "upload_time": "2017-10-04T20:36:27", "url": "https://files.pythonhosted.org/packages/42/53/5eff10704edc59ab093f413f4617ceb60126ace260fdb057df3ffdf3b177/aws-adfs-0.3.16.tar.gz" } ], "0.3.17": [ { "comment_text": "", "digests": { "md5": "34f0e8cac0bcaa61e50b39fbc9d0dd73", "sha256": "64aea228d31e9fc28ad82fb08990a714d395a55cc99c60a352f16c63c22302b0" }, "downloads": -1, "filename": "aws-adfs-0.3.17.tar.gz", "has_sig": false, "md5_digest": "34f0e8cac0bcaa61e50b39fbc9d0dd73", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40206, "upload_time": "2017-10-05T04:47:32", "url": "https://files.pythonhosted.org/packages/7b/25/b091479f749054ca69134a41b3704806ea9d89ce700fe814574d02a428c6/aws-adfs-0.3.17.tar.gz" } ], "0.3.18": [ { "comment_text": "", "digests": { "md5": "2b87e0ccbb90af9793a70961d066d67e", "sha256": "5d3d67464357ebaaf905a9b9846f6ec7fef3c63543aef418d928ad74c25f4e4a" }, "downloads": -1, "filename": "aws-adfs-0.3.18.tar.gz", "has_sig": false, "md5_digest": "2b87e0ccbb90af9793a70961d066d67e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40391, "upload_time": "2017-10-06T04:37:20", "url": "https://files.pythonhosted.org/packages/d0/ee/c5b4fbddffaa196e0fa538a721620d480782e6b88d849d19bfebebce2003/aws-adfs-0.3.18.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "afbf6513773a1861d142be96f9a71a70", "sha256": "1f77a1ff84d55e6f105342b18d6934ab299d420b1584d6c92d8b8ef0e0aaa8c3" }, "downloads": -1, "filename": "aws-adfs-0.3.2.tar.gz", "has_sig": false, "md5_digest": "afbf6513773a1861d142be96f9a71a70", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16735, "upload_time": "2017-04-09T19:30:19", "url": "https://files.pythonhosted.org/packages/ca/54/5bec6d5d4e7b19053e4360d1ce42de80abedcd1952e8859e86d406cd1400/aws-adfs-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "ba79c9be64f32cf95ed7364e70e0b055", "sha256": "23bdf5fe6d92547734b6da352f1fda02f64c14364b11f1f69b499e3cf765d13f" }, "downloads": -1, "filename": "aws-adfs-0.3.3.tar.gz", "has_sig": false, "md5_digest": "ba79c9be64f32cf95ed7364e70e0b055", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16740, "upload_time": "2017-04-12T20:27:11", "url": "https://files.pythonhosted.org/packages/05/5b/d0a8de5463f480a768dce17e05293bb13de623efcd940ab4ce2a47f144a0/aws-adfs-0.3.3.tar.gz" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "3d08a44ac0d05f3a1f802d423512101b", "sha256": "d2bb65af0aaa538c7f10f5f3e5abb43a65c75e88ace28f13651bb2ec0153ce97" }, "downloads": -1, "filename": "aws-adfs-0.3.4.tar.gz", "has_sig": false, "md5_digest": "3d08a44ac0d05f3a1f802d423512101b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18574, "upload_time": "2017-06-20T20:11:24", "url": "https://files.pythonhosted.org/packages/70/bd/75b0b6fc0a36bb98809b980770a680075158f43735078a762bcc7afb327e/aws-adfs-0.3.4.tar.gz" } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "3fd43806533550b82346867e820f30b2", "sha256": "b887d573687efb234f70c7257942052346165f8f89aa3489e81753adb7dd87a2" }, "downloads": -1, "filename": "aws-adfs-0.3.5.tar.gz", "has_sig": false, "md5_digest": "3fd43806533550b82346867e820f30b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17382, "upload_time": "2017-06-21T20:49:41", "url": "https://files.pythonhosted.org/packages/4b/9f/d4bdadd817739b0d5a942fd52cb62aadef797dd5cf9439ef8059f0e6e6c7/aws-adfs-0.3.5.tar.gz" } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "3ae734f88233815a67b35f46e304b9d2", "sha256": "1567bbc65fd5d698a965c630a1ef9357f87c815759210c6cd7630c2d3165e988" }, "downloads": -1, "filename": "aws-adfs-0.3.6.tar.gz", "has_sig": false, "md5_digest": "3ae734f88233815a67b35f46e304b9d2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17592, "upload_time": "2017-06-24T08:04:33", "url": "https://files.pythonhosted.org/packages/5d/93/712ce35d3597047cea097126a17625d873f2d7106fe38a8d85596c501cec/aws-adfs-0.3.6.tar.gz" } ], "0.3.7": [ { "comment_text": "", "digests": { "md5": "a9d26c4d7feec857c62e9d6718599f4d", "sha256": "544197ce62f2c02c925eb24955343d6f975469ee8d25ecaaf9710ddb6a06ec34" }, "downloads": -1, "filename": "aws-adfs-0.3.7.tar.gz", "has_sig": false, "md5_digest": "a9d26c4d7feec857c62e9d6718599f4d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21310, "upload_time": "2017-07-12T04:37:14", "url": "https://files.pythonhosted.org/packages/6f/12/af5d2757371146b785f9530268dbbef7a607c903844304db006de063dc92/aws-adfs-0.3.7.tar.gz" } ], "0.3.8": [ { "comment_text": "", "digests": { "md5": "ab0ddddef27941a7f171f3796578f6bb", "sha256": "f47e2fa8d368e27a812ae9f622e317c86e65d82b6c4b3b6c580d34af620fbeeb" }, "downloads": -1, "filename": "aws-adfs-0.3.8.tar.gz", "has_sig": false, "md5_digest": "ab0ddddef27941a7f171f3796578f6bb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22206, "upload_time": "2017-07-20T21:10:09", "url": "https://files.pythonhosted.org/packages/02/06/5c154d11ac2ea67136bc2c637fe2d45ed25c028b2d810dda045748513953/aws-adfs-0.3.8.tar.gz" } ], "0.3.9": [ { "comment_text": "", "digests": { "md5": "705b1e3ab02e2de476463e2f81d03368", "sha256": "78cf789a58e7af35aa8b03d37411365d49e280f31f75273a6c04f26e6327872f" }, "downloads": -1, "filename": "aws-adfs-0.3.9.tar.gz", "has_sig": false, "md5_digest": "705b1e3ab02e2de476463e2f81d03368", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22278, "upload_time": "2017-07-28T15:49:28", "url": "https://files.pythonhosted.org/packages/29/71/74b0267425615b8ade0f9541aa62e6b0f30a7074b42655e900b274eb01a1/aws-adfs-0.3.9.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "67f0da045444919145dc9247e274c77b", "sha256": "72217872200a5d48d9a2a6198936833ad088a33148d73377985e528f0ffb2d6d" }, "downloads": -1, "filename": "aws-adfs-0.4.0.tar.gz", "has_sig": false, "md5_digest": "67f0da045444919145dc9247e274c77b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40599, "upload_time": "2017-10-12T20:06:12", "url": "https://files.pythonhosted.org/packages/98/0d/826fbeafa47068096553f403386553a92645217184efff0bd9f04760ea1c/aws-adfs-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "bd70748d61bc0e0b556d3dd97a721ab9", "sha256": "82acebf46ce7592adf1fcfef89c0782619a32280832d1b80e014086510e86e8a" }, "downloads": -1, "filename": "aws-adfs-0.4.1.tar.gz", "has_sig": false, "md5_digest": "bd70748d61bc0e0b556d3dd97a721ab9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40625, "upload_time": "2017-10-17T04:52:58", "url": "https://files.pythonhosted.org/packages/df/ac/4afda3679e8149af8f342968f1501eddcc4d19b1f60edb7fbe90f6a3d363/aws-adfs-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "d4ec3a1406f8a93001d613845de2adee", "sha256": "ece96962640051a6b86f93b95a571ca8f0e1c2cd4d75a928d9ff88fa8d48cc5d" }, "downloads": -1, "filename": "aws-adfs-0.4.2.tar.gz", "has_sig": false, "md5_digest": "d4ec3a1406f8a93001d613845de2adee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43494, "upload_time": "2017-11-02T20:21:55", "url": "https://files.pythonhosted.org/packages/38/ce/56998ac9f23b205dbbc42906f055ba92f92540d086393ee6769bf18f0b58/aws-adfs-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "8e6fc3fd2439d13a1903c528b919927e", "sha256": "7bb5f35a67d1e2f92bc4f320643ed84463a5260d332e543b3210da35c2b19145" }, "downloads": -1, "filename": "aws-adfs-0.4.3.tar.gz", "has_sig": false, "md5_digest": "8e6fc3fd2439d13a1903c528b919927e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43497, "upload_time": "2017-11-02T20:34:21", "url": "https://files.pythonhosted.org/packages/be/af/dd340187a45433a248522490b5663bf81a5aeb5ff942b490c94d13d76f23/aws-adfs-0.4.3.tar.gz" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "51eca304ebb7d7c052d7c563cd2f41d1", "sha256": "ddb434981fc59a72c702d70c010b7eb0b945060ef638c9e5f81b1e6b35508d65" }, "downloads": -1, "filename": "aws-adfs-0.4.4.tar.gz", "has_sig": false, "md5_digest": "51eca304ebb7d7c052d7c563cd2f41d1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43514, "upload_time": "2017-11-28T06:53:53", "url": "https://files.pythonhosted.org/packages/e8/be/e3c0a703c4d5bff38613ffcb107d90b63ef7b703684a2b8e7d91e6c0ac3e/aws-adfs-0.4.4.tar.gz" } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "e04eee3c30736de765690fa0e6bd4652", "sha256": "5bf7c561b31002cd7e500aa6e7077953f83cac51577ea5acb5a9868d7f17c549" }, "downloads": -1, "filename": "aws-adfs-0.4.5.tar.gz", "has_sig": false, "md5_digest": "e04eee3c30736de765690fa0e6bd4652", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43516, "upload_time": "2017-12-17T16:52:00", "url": "https://files.pythonhosted.org/packages/d5/a6/eacf6589e6d0056eaea80e9e97541b756b2b88b1149ce3e926050231567b/aws-adfs-0.4.5.tar.gz" } ], "0.4.6": [ { "comment_text": "", "digests": { "md5": "26b6601db70eac3d5deabc7a9a753ec4", "sha256": "f80e367d437b8a55e0dec54a77d33bad53aa50d86fc1b0754e62cd9c3606fe2b" }, "downloads": -1, "filename": "aws-adfs-0.4.6.tar.gz", "has_sig": false, "md5_digest": "26b6601db70eac3d5deabc7a9a753ec4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43526, "upload_time": "2017-12-24T10:03:00", "url": "https://files.pythonhosted.org/packages/62/a7/a2b643b5ea89dad5d2f0dbf883e951253878ffb30ab334b88f316b91472f/aws-adfs-0.4.6.tar.gz" } ], "0.4.7": [ { "comment_text": "", "digests": { "md5": "4a8061429ec9ffff9917b9f4619b10be", "sha256": "67c3bfa1fecb5f61f305125df5019001137dadc95483c4b0ca586fe777f3d8a8" }, "downloads": -1, "filename": "aws-adfs-0.4.7.tar.gz", "has_sig": false, "md5_digest": "4a8061429ec9ffff9917b9f4619b10be", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43528, "upload_time": "2017-12-24T10:10:49", "url": "https://files.pythonhosted.org/packages/3d/06/27284ebf5f6ed13721a11335560eea61a39dd3f637dab5f50ad477a0298a/aws-adfs-0.4.7.tar.gz" } ], "0.4.8": [ { "comment_text": "", "digests": { "md5": "025ce5a1afc0604917dee20936b0e218", "sha256": "37d50c4c636eb631c99fddf9777f1a70fe61a5d286e6cb87d6f76149e2c0416d" }, "downloads": -1, "filename": "aws-adfs-0.4.8.tar.gz", "has_sig": false, "md5_digest": "025ce5a1afc0604917dee20936b0e218", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43640, "upload_time": "2018-01-03T20:32:39", "url": "https://files.pythonhosted.org/packages/9f/78/4405e2099bf5d2a13a7a69d76f9480594804e62bd947af4ad9b795c0c147/aws-adfs-0.4.8.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "0930e89ec302543cfbe57fd8d6c4f535", "sha256": "d19903f95d5e6d49536e4d6f7e20c869663724a018a64451ee04484065f4bf05" }, "downloads": -1, "filename": "aws-adfs-0.5.0.tar.gz", "has_sig": false, "md5_digest": "0930e89ec302543cfbe57fd8d6c4f535", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43755, "upload_time": "2018-01-27T20:32:46", "url": "https://files.pythonhosted.org/packages/06/36/f3ec89f3c6aaf2c2b92c2922141e43361378de85903fb415ad693696a368/aws-adfs-0.5.0.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "228a7ce7baefb5be57566b25822de6b7", "sha256": "37aee7050697cdb95ecd1bb2d3844c06248236df3f60dd9ca7393808efd4c0dd" }, "downloads": -1, "filename": "aws-adfs-0.6.0.tar.gz", "has_sig": false, "md5_digest": "228a7ce7baefb5be57566b25822de6b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44854, "upload_time": "2018-01-30T20:29:59", "url": "https://files.pythonhosted.org/packages/cc/c5/6419570460a9d67230c13a7297d09a147dbb8716d0f5e957167fc85457a5/aws-adfs-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "7c5a2863d3168cedff12df283d9cbf9c", "sha256": "27fa05d2bb4d3f955ee4c7baae9c5059c9ea370d317518bb7eb645cf2ba997b1" }, "downloads": -1, "filename": "aws-adfs-0.6.1.tar.gz", "has_sig": false, "md5_digest": "7c5a2863d3168cedff12df283d9cbf9c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44928, "upload_time": "2018-02-07T07:17:45", "url": "https://files.pythonhosted.org/packages/ec/e2/9f831add0465bd2db42b6f96ee484f0645d5a2bd0d0a0387e607bda08aff/aws-adfs-0.6.1.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "11c5781545c223f4e48d69f7ca1b38cb", "sha256": "b2c59123384051816bd03649d93e5cf914018d95ccb8309b75f1e69e19a3f377" }, "downloads": -1, "filename": "aws-adfs-0.7.0.tar.gz", "has_sig": false, "md5_digest": "11c5781545c223f4e48d69f7ca1b38cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45073, "upload_time": "2018-02-16T19:12:54", "url": "https://files.pythonhosted.org/packages/87/60/bea695b7403847303cb2290936eb44d333a65a3536bc000daa3d61a09726/aws-adfs-0.7.0.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "86859679276c14de081bfa847debd08b", "sha256": "a75814159849c49e7a4c4f8fad78050e229b9666aabf903d3fd0e294b79340d4" }, "downloads": -1, "filename": "aws-adfs-0.8.0.tar.gz", "has_sig": false, "md5_digest": "86859679276c14de081bfa847debd08b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43829, "upload_time": "2018-03-01T18:47:16", "url": "https://files.pythonhosted.org/packages/19/16/37dae5cebe23ea243d0f48417527b87f16ef834d94eb5b0106f11a71d8de/aws-adfs-0.8.0.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "7fed1441a7f407d36d5dbdfae3c93aff", "sha256": "4b8cf272122c7bbda93821be83416df2251c2e8b796d686a9640d2f7e4fd3e43" }, "downloads": -1, "filename": "aws-adfs-0.9.0.tar.gz", "has_sig": false, "md5_digest": "7fed1441a7f407d36d5dbdfae3c93aff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44270, "upload_time": "2018-04-08T12:04:06", "url": "https://files.pythonhosted.org/packages/4e/56/af699824184f999acacdab99c371033af003ec090307c65d4e06663f79da/aws-adfs-0.9.0.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "c7d391c3dde03078557d24a6e744f29a", "sha256": "10e79ad9977ded218a518e37b1e99c4b38412c60be0e9d358485bd605b3fb108" }, "downloads": -1, "filename": "aws-adfs-0.9.1.tar.gz", "has_sig": false, "md5_digest": "c7d391c3dde03078557d24a6e744f29a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44506, "upload_time": "2018-04-09T18:03:03", "url": "https://files.pythonhosted.org/packages/85/65/ed59ceaf15b63188594dfc70317751339f7ce8394c7b5befd0563e39f73b/aws-adfs-0.9.1.tar.gz" } ], "1.12.2": [ { "comment_text": "", "digests": { "md5": "7b734dc347a07351fc1622eb135d33ad", "sha256": "e35fbd33e1878310099346a95b7eb5244831c9f5f6554bca7193ac50dcd41aa3" }, "downloads": -1, "filename": "aws-adfs-1.12.2.tar.gz", "has_sig": false, "md5_digest": "7b734dc347a07351fc1622eb135d33ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46145, "upload_time": "2018-09-19T16:53:16", "url": "https://files.pythonhosted.org/packages/b7/d5/5931df34f43c0d0823d58f7493f46d6b5f474fd051101a7342263e6b77af/aws-adfs-1.12.2.tar.gz" } ], "1.12.3": [ { "comment_text": "", "digests": { "md5": "307cbf94084ba2c3c657ac5081a44bda", "sha256": "b7df3fbe0572eb12294b2e072327ca97fd94d435b39cc10612e460cde914b831" }, "downloads": -1, "filename": "aws-adfs-1.12.3.tar.gz", "has_sig": false, "md5_digest": "307cbf94084ba2c3c657ac5081a44bda", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46252, "upload_time": "2019-01-23T05:56:08", "url": "https://files.pythonhosted.org/packages/d6/b9/cb485947e1036399245aee0a55ce4c3fa783cf5f6519310b47dbce9d80d7/aws-adfs-1.12.3.tar.gz" } ], "1.13.0": [ { "comment_text": "", "digests": { "md5": "b2ed5ea5370e82df9c55b51f08aa5cd1", "sha256": "0d02568dd0f70345170eff2f67aab65a021fef3f7213dc31538124f291a966d1" }, "downloads": -1, "filename": "aws-adfs-1.13.0.tar.gz", "has_sig": false, "md5_digest": "b2ed5ea5370e82df9c55b51f08aa5cd1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46822, "upload_time": "2019-02-23T19:28:11", "url": "https://files.pythonhosted.org/packages/70/ff/d9544e0111a8a118aa0d4a55d267efd80bb891d60744c808d9cedeb2dba8/aws-adfs-1.13.0.tar.gz" } ], "1.14.0": [ { "comment_text": "", "digests": { "md5": "7774599174bc1939f2e179879195e5be", "sha256": "bbd31bc72cc088a885c1145b16649d4836cbda2fe17c7097afb76ee2d09455c8" }, "downloads": -1, "filename": "aws-adfs-1.14.0.tar.gz", "has_sig": false, "md5_digest": "7774599174bc1939f2e179879195e5be", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47229, "upload_time": "2019-04-20T08:17:47", "url": "https://files.pythonhosted.org/packages/dd/1f/3bdf1cd889b4b1dd0fd446a640a4e300691a9c8ea30b8c48a11d3862d54f/aws-adfs-1.14.0.tar.gz" } ], "1.15.0": [ { "comment_text": "", "digests": { "md5": "d95af96a9a6be4675985930743ab6334", "sha256": "c744a7755f68d306d05c78f5ab946876aa2594ff74ef4d7a6221e09b7690e703" }, "downloads": -1, "filename": "aws-adfs-1.15.0.tar.gz", "has_sig": false, "md5_digest": "d95af96a9a6be4675985930743ab6334", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47803, "upload_time": "2019-04-25T04:39:02", "url": "https://files.pythonhosted.org/packages/5c/62/58db95f98fdf68db65771e0b1d7d7b84beac43d187dc73e71611dd08a3a3/aws-adfs-1.15.0.tar.gz" } ], "1.16.0": [ { "comment_text": "", "digests": { "md5": "43d7f6f16672f27a29ae5f3dc1a01d37", "sha256": "2a289d2424e368e28ee4f75f37af49fb422ab53eb608e873fe49d08db9c83073" }, "downloads": -1, "filename": "aws-adfs-1.16.0.tar.gz", "has_sig": false, "md5_digest": "43d7f6f16672f27a29ae5f3dc1a01d37", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47961, "upload_time": "2019-06-04T08:20:29", "url": "https://files.pythonhosted.org/packages/4f/50/8ac077f170481ec28a893e00061d8c8a9c1cf8357f8103f172841649a92c/aws-adfs-1.16.0.tar.gz" } ], "1.17.0": [ { "comment_text": "", "digests": { "md5": "3f7ea8453e086e82d26290800933ed4b", "sha256": "a4b8aea868fc8d3cdf4af695d863a9e526381ca3916f9c77a5b1437725afda72" }, "downloads": -1, "filename": "aws-adfs-1.17.0.tar.gz", "has_sig": false, "md5_digest": "3f7ea8453e086e82d26290800933ed4b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48701, "upload_time": "2019-07-11T15:14:17", "url": "https://files.pythonhosted.org/packages/a3/d9/5487433d563c3c5d94c9e8a7478000dceb98b28d5dbb35a2ab397b945c49/aws-adfs-1.17.0.tar.gz" } ], "1.18.0": [ { "comment_text": "", "digests": { "md5": "e7d919cf5a5a4c8e48748ab937b12416", "sha256": "9cc0f01eb8d08d734a88e4f815ff1942cfeda41495731079b9adce4c2a41e45a" }, "downloads": -1, "filename": "aws-adfs-1.18.0.tar.gz", "has_sig": false, "md5_digest": "e7d919cf5a5a4c8e48748ab937b12416", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51760, "upload_time": "2019-09-25T14:02:13", "url": "https://files.pythonhosted.org/packages/ec/4a/96de913c94a4c6ba0957e17b51b34abcb2496e0e0d9d0bd5a2b8958d8886/aws-adfs-1.18.0.tar.gz" } ], "1.18.1": [ { "comment_text": "", "digests": { "md5": "e22ec41959df4bbfec1c537bf829e9c9", "sha256": "5cd0c544eb812bcf5758a5f9af6c6cf4b500de33264fd0be7652a41fda2b47b9" }, "downloads": -1, "filename": "aws-adfs-1.18.1.tar.gz", "has_sig": false, "md5_digest": "e22ec41959df4bbfec1c537bf829e9c9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51808, "upload_time": "2019-09-26T06:27:33", "url": "https://files.pythonhosted.org/packages/1d/80/8bb9102d9b8dd8b538690ec173a4331747a6be77796987a8784acfc27b13/aws-adfs-1.18.1.tar.gz" } ], "1.19.0": [ { "comment_text": "", "digests": { "md5": "3b4c339d0eeb0ffc0354edb0649e6150", "sha256": "da20c682993d87d41534ffc2be0819d924aaf230b27abbc5d1fa8ad62410bf39" }, "downloads": -1, "filename": "aws-adfs-1.19.0.tar.gz", "has_sig": false, "md5_digest": "3b4c339d0eeb0ffc0354edb0649e6150", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52103, "upload_time": "2019-10-15T06:33:15", "url": "https://files.pythonhosted.org/packages/95/f9/32ac6de3230c1f6928008bec83b439795e4c5d13c0e75a935f9845b9c845/aws-adfs-1.19.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "3b4c339d0eeb0ffc0354edb0649e6150", "sha256": "da20c682993d87d41534ffc2be0819d924aaf230b27abbc5d1fa8ad62410bf39" }, "downloads": -1, "filename": "aws-adfs-1.19.0.tar.gz", "has_sig": false, "md5_digest": "3b4c339d0eeb0ffc0354edb0649e6150", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52103, "upload_time": "2019-10-15T06:33:15", "url": "https://files.pythonhosted.org/packages/95/f9/32ac6de3230c1f6928008bec83b439795e4c5d13c0e75a935f9845b9c845/aws-adfs-1.19.0.tar.gz" } ] }