{ "info": { "author": "PyOTP contributors", "author_email": "kislyuk@gmail.com", "bugtrack_url": null, "classifiers": [ "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: MacOS :: MacOS X", "Operating System :: POSIX", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "PyOTP - The Python One-Time Password Library\n============================================\n\nPyOTP is a Python library for generating and verifying one-time passwords. It can be used to implement two-factor (2FA)\nor multi-factor (MFA) authentication methods in web applications and in other systems that require users to log in.\n\nOpen MFA standards are defined in `RFC 4226 `_ (HOTP: An HMAC-Based One-Time\nPassword Algorithm) and in `RFC 6238 `_ (TOTP: Time-Based One-Time Password\nAlgorithm). PyOTP implements server-side support for both of these standards. Client-side support can be enabled by\nsending authentication codes to users over SMS or email (HOTP) or, for TOTP, by instructing users to use `Google\nAuthenticator `_, `Authy `_, or another\ncompatible app. Users can set up auth tokens in their apps easily by using their phone camera to scan `otpauth://\n`_ QR codes provided by PyOTP.\n\nImplementers should read and follow the `HOTP security requirements `_\nand `TOTP security considerations `_ sections of the relevant RFCs. At\nminimum, application implementers should follow this checklist:\n\n- Ensure transport confidentiality by using HTTPS\n- Ensure HOTP/TOTP secret confidentiality by storing secrets in a controlled access database\n- Deny replay attacks by rejecting one-time passwords that have been used by the client (this requires storing the most \n recently authenticated timestamp, OTP, or hash of the OTP in your database, and rejecting the OTP when a match is seen)\n- Throttle brute-force attacks against your application's login functionality\n- When implementing a \"greenfield\" application, consider supporting\n `FIDO U2F `_/`WebAuthn `_ in\n addition to HOTP/TOTP. U2F uses asymmetric cryptography to avoid using a shared secret design, which strengthens your\n MFA solution against server-side attacks. Hardware U2F also sequesters the client secret in a dedicated single-purpose\n device, which strengthens your clients against client-side attacks. And by automating scoping of credentials to\n relying party IDs (application origin/domain names), U2F adds protection against phishing attacks. One implementation of\n FIDO U2F/WebAuthn is PyOTP's sister project, `PyWARP `_.\n\nWe also recommend that implementers read the\n`OWASP Authentication Cheat Sheet `_ and\n`NIST SP 800-63-3: Digital Authentication Guideline `_ for a high level overview of\nauthentication best practices.\n\nQuick overview of using One Time Passwords on your phone\n--------------------------------------------------------\n\n* OTPs involve a shared secret, stored both on the phone and the server\n* OTPs can be generated on a phone without internet connectivity\n* OTPs should always be used as a second factor of authentication (if your phone is lost, you account is still secured with a password)\n* Google Authenticator and other OTP client apps allow you to store multiple OTP secrets and provision those using a QR Code\n\nInstallation\n------------\n::\n\n pip install pyotp\n\nUsage\n-----\n\nTime-based OTPs\n~~~~~~~~~~~~~~~\n::\n\n totp = pyotp.TOTP('base32secret3232')\n totp.now() # => '492039'\n\n # OTP verified for current time\n totp.verify('492039') # => True\n time.sleep(30)\n totp.verify('492039') # => False\n\nCounter-based OTPs\n~~~~~~~~~~~~~~~~~~\n::\n\n hotp = pyotp.HOTP('base32secret3232')\n hotp.at(0) # => '260182'\n hotp.at(1) # => '055283'\n hotp.at(1401) # => '316439'\n\n # OTP verified with a counter\n hotp.verify('316439', 1401) # => True\n hotp.verify('316439', 1402) # => False\n\nGenerating a base32 Secret Key\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n::\n\n pyotp.random_base32() # returns a 16 character base32 secret. Compatible with Google Authenticator and other OTP apps\n\nGoogle Authenticator Compatible\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nPyOTP works with the Google Authenticator iPhone and Android app, as well as other OTP apps like Authy. PyOTP includes the\nability to generate provisioning URIs for use with the QR Code scanner built into these MFA client apps::\n\n pyotp.totp.TOTP('JBSWY3DPEHPK3PXP').provisioning_uri(\"alice@google.com\", issuer_name=\"Secure App\")\n\n >>> 'otpauth://totp/Secure%20App:alice%40google.com?secret=JBSWY3DPEHPK3PXP&issuer=Secure%20App'\n\n pyotp.hotp.HOTP('JBSWY3DPEHPK3PXP').provisioning_uri(\"alice@google.com\", initial_count=0, issuer_name=\"Secure App\")\n\n >>> 'otpauth://hotp/Secure%20App:alice%40google.com?secret=JBSWY3DPEHPK3PXP&issuer=Secure%20App&counter=0'\n\nThis URL can then be rendered as a QR Code (for example, using https://github.com/neocotic/qrious) which can then be scanned\nand added to the users list of OTP credentials.\n\nWorking example\n~~~~~~~~~~~~~~~\n\nScan the following barcode with your phone's OTP app (e.g. Google Authenticator):\n\n.. image:: https://chart.apis.google.com/chart?cht=qr&chs=250x250&chl=otpauth%3A%2F%2Ftotp%2Falice%40google.com%3Fsecret%3DJBSWY3DPEHPK3PXP\n\nNow run the following and compare the output::\n\n import pyotp\n totp = pyotp.TOTP(\"JBSWY3DPEHPK3PXP\")\n print(\"Current OTP:\", totp.now())\n\nLinks\n~~~~~\n\n* `Project home page (GitHub) `_\n* `Documentation (Read the Docs) `_\n* `Package distribution (PyPI) `_\n* `Change log `_\n* `RFC 4226: HOTP: An HMAC-Based One-Time Password `_\n* `RFC 6238: TOTP: Time-Based One-Time Password Algorithm `_\n* `ROTP `_ - Original Ruby OTP library by `Mark Percival `_\n* `OTPHP `_ - PHP port of ROTP by `Le Lag `_\n* `OWASP Authentication Cheat Sheet `_\n* `NIST SP 800-63-3: Digital Authentication Guideline `_\n\nFor new applications:\n\n* `WebAuthn `_\n* `PyWARP `_\n\n.. image:: https://img.shields.io/travis/pyotp/pyotp.svg\n :target: https://travis-ci.org/pyotp/pyotp\n.. image:: https://img.shields.io/codecov/c/github/pyotp/pyotp/master.svg\n :target: https://codecov.io/github/pyotp/pyotp?branch=master\n.. image:: https://img.shields.io/pypi/v/pyotp.svg\n :target: https://pypi.python.org/pypi/pyotp\n.. image:: https://img.shields.io/pypi/l/pyotp.svg\n :target: https://pypi.python.org/pypi/pyotp\n.. image:: https://readthedocs.org/projects/pyotp/badge/?version=latest\n :target: https://pyotp.readthedocs.io/\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/pyotp/pyotp", "keywords": "", "license": "MIT License", "maintainer": "", "maintainer_email": "", "name": "pyotp", "package_url": "https://pypi.org/project/pyotp/", "platform": "MacOS X", "project_url": "https://pypi.org/project/pyotp/", "project_urls": { "Homepage": "https://github.com/pyotp/pyotp" }, "release_url": "https://pypi.org/project/pyotp/2.3.0/", "requires_dist": null, "requires_python": "", "summary": "Python One Time Password Library", "version": "2.3.0" }, "last_serial": 5589848, "releases": { "1.3.0": [ { "comment_text": "", "digests": { "md5": "73cd177722a6cba3868de900338115d0", "sha256": "1a14f7278f808428ba5221cd93cef2b9f9da016bc720ed35e0b40b2113cf4fb2" }, "downloads": -1, "filename": "pyotp-1.3.0.tar.gz", "has_sig": false, "md5_digest": "73cd177722a6cba3868de900338115d0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4131, "upload_time": "2011-09-26T12:27:11", "url": "https://files.pythonhosted.org/packages/70/19/1d96bbb4e9fd5f287bf5f601031d956b0acbdcd740f150de0eb3957ce611/pyotp-1.3.0.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "7c45ca9a13f863caa1e8146e07d2b8b2", "sha256": "86ea8fc7425f1dfeed3c3c4360c48780fa90cb505440a73b097f00cb13baea1b" }, "downloads": -1, "filename": "pyotp-1.3.1.tar.gz", "has_sig": false, "md5_digest": "7c45ca9a13f863caa1e8146e07d2b8b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4843, "upload_time": "2012-02-29T10:47:41", "url": "https://files.pythonhosted.org/packages/ee/37/8d76dcd996ac5e4a361de1e21c6c2d35ef10802f3143b447b5f7e0f992eb/pyotp-1.3.1.tar.gz" } ], "1.4": [ { "comment_text": "", "digests": { "md5": "e54ba3b645b5b726cd2685ef59cc8d69", "sha256": "90116099f4c0d7cd3fb9f230cfd4dbfa8f99f53c464796a43584f5d9ac83a5ee" }, "downloads": -1, "filename": "pyotp-1.4.tar.gz", "has_sig": false, "md5_digest": "e54ba3b645b5b726cd2685ef59cc8d69", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4885, "upload_time": "2014-03-05T18:49:37", "url": "https://files.pythonhosted.org/packages/29/e6/4080a1320287b13449bf7793facfc9c55c76967581160d5c9eb090aa67ce/pyotp-1.4.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "d2b2c1e78785b079107dac7f52f003d4", "sha256": "e08d5164ccbe1d031894b5a1bb2a8e930f2be1d7a96d2b374f16239422b6c666" }, "downloads": -1, "filename": "pyotp-1.4.1.tar.gz", "has_sig": false, "md5_digest": "d2b2c1e78785b079107dac7f52f003d4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5386, "upload_time": "2014-03-27T15:49:02", "url": "https://files.pythonhosted.org/packages/6e/2f/f73658d41cf24da419a0c1ee8b67a516b301df7eed52d2fc7966904c3d28/pyotp-1.4.1.tar.gz" } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "84ea5b1095954621e3ce98dece5b5479", "sha256": "7866791f1f9ebf9d99416b16df8dcb9d0cbfe44df1f98e5da839fb2cb19271d8" }, "downloads": -1, "filename": "pyotp-1.4.2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "84ea5b1095954621e3ce98dece5b5479", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 9756, "upload_time": "2015-08-03T22:01:59", "url": "https://files.pythonhosted.org/packages/1f/d9/a191f96468a6955f162295d715d6c4443439a2d3a8a2cc310cce8e49bcf4/pyotp-1.4.2-py2.py3-none-any.whl" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "0d374e3c77dc414abaa1daddf5f2b352", "sha256": "b8b5b3dbe11075d592f9542cb2f8ff340cef21c911c1560b1d02aea7ebc6f787" }, "downloads": -1, "filename": "pyotp-2.0.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "0d374e3c77dc414abaa1daddf5f2b352", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 9775, "upload_time": "2015-08-22T23:09:15", "url": "https://files.pythonhosted.org/packages/d4/9b/2fdb59640f047a007a5f9380a54cb75b4a5beddb0a2c29d18ee8ca7c3738/pyotp-2.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "896bc7b44940bfdbd3d5e8180cef8d29", "sha256": "4de46c41ace2f146f452933cdfaf6a1c1b81d6173c463264ac673b7098efc95e" }, "downloads": -1, "filename": "pyotp-2.0.0.tar.gz", "has_sig": true, "md5_digest": "896bc7b44940bfdbd3d5e8180cef8d29", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8116, "upload_time": "2015-08-22T23:09:06", "url": "https://files.pythonhosted.org/packages/19/fb/7ffc1cb9810e90b357adb6d7ce405931a9e35acc79c94143ec40764ac5a4/pyotp-2.0.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "c883a472ccbd4aad0a4d075e0e1da2b8", "sha256": "6311d8698bc6eeb97e8abdf971498e7e2656f04529defb337d8bd7abcc045026" }, "downloads": -1, "filename": "pyotp-2.0.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "c883a472ccbd4aad0a4d075e0e1da2b8", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 9799, "upload_time": "2015-09-28T14:44:05", "url": "https://files.pythonhosted.org/packages/c6/4c/f98b873f120fe36ab9da5ae6efdaf27c1c5c665dc0ef3aa3aec260b71149/pyotp-2.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "76811d7f9a6f85cd940f41cab737eea9", "sha256": "d08ebc8a1083aff63a62dc702df26c460b5d2ee4badce6e6c7566e5390078667" }, "downloads": -1, "filename": "pyotp-2.0.1.tar.gz", "has_sig": true, "md5_digest": "76811d7f9a6f85cd940f41cab737eea9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8118, "upload_time": "2015-09-28T14:43:56", "url": "https://files.pythonhosted.org/packages/8e/b7/54e58aa5f73ff624b67c33be97cf13fc13f1b55d7b137757498051f8cc9c/pyotp-2.0.1.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "e75c7da1f5e92b5b3f2d86a956ec74ad", "sha256": "6fe69c89bda0eefe3ff152235b41ff6442b0a15007ea17ed6184148612d2b72f" }, "downloads": -1, "filename": "pyotp-2.1.0.tar.gz", "has_sig": true, "md5_digest": "e75c7da1f5e92b5b3f2d86a956ec74ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9119, "upload_time": "2016-05-02T16:00:30", "url": "https://files.pythonhosted.org/packages/8c/7b/840804b1577d2f49c2d0c7163abdce38885137ae8305049e999be905e0cb/pyotp-2.1.0.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "648bceefdfa1b44a31adb6e1dc3ca7d6", "sha256": "7d090c0efeae6c71e60c8b798554c12eb7735c881e6ae4e75abe3ec8d2fea36a" }, "downloads": -1, "filename": "pyotp-2.1.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "648bceefdfa1b44a31adb6e1dc3ca7d6", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 10117, "upload_time": "2016-05-02T16:02:35", "url": "https://files.pythonhosted.org/packages/86/e1/06036f4db1c7632d667838b9664abdb79d1bf26e10c7b99b0400766e6cd2/pyotp-2.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5d5a60235d6a170accaecdfc945ae7ff", "sha256": "fef428ebb0c02bbf108895b8362ef5f52ec9cc14b3964a501258cfc8ddfb1590" }, "downloads": -1, "filename": "pyotp-2.1.1.tar.gz", "has_sig": true, "md5_digest": "5d5a60235d6a170accaecdfc945ae7ff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9120, "upload_time": "2016-05-02T16:02:13", "url": "https://files.pythonhosted.org/packages/fe/bc/e0fc7483dfdba301c24846278e02e60dae7c462d33c1d0aebf3ba4ea8db6/pyotp-2.1.1.tar.gz" } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "d092726286c8d85268e179b60a0110d3", "sha256": "dbde454402f78c5955b1b02e9180f980fe31b1e8ae2077c613f15a2e8f563110" }, "downloads": -1, "filename": "pyotp-2.2.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "d092726286c8d85268e179b60a0110d3", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 10601, "upload_time": "2016-08-30T17:26:54", "url": "https://files.pythonhosted.org/packages/6a/7b/bba40f384a598ace1054d9ab998809108478d2943e203dd1d5fee5dc464a/pyotp-2.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7c9d3c0a19d2ced48b10f0c1fd8f0bb2", "sha256": "13877ba4878597ea701626be112811062e30e8fc90a1314b14a79c21f0c67f0a" }, "downloads": -1, "filename": "pyotp-2.2.1.tar.gz", "has_sig": true, "md5_digest": "7c9d3c0a19d2ced48b10f0c1fd8f0bb2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9867, "upload_time": "2016-08-30T17:26:49", "url": "https://files.pythonhosted.org/packages/9b/ab/26991667e28962451d22cb96c8b17c7f3bb0b3b5ba24b9994f78db30a342/pyotp-2.2.1.tar.gz" } ], "2.2.4": [ { "comment_text": "", "digests": { "md5": "eff6d4688240d6405219e984754307a7", "sha256": "4dfa4e8f9ac9061214b85674cff14cbf8e0efd6ccf4b83789658e551b1a5ff6b" }, "downloads": -1, "filename": "pyotp-2.2.4-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "eff6d4688240d6405219e984754307a7", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 10889, "upload_time": "2017-01-04T19:16:15", "url": "https://files.pythonhosted.org/packages/60/9d/a3b1294f3ffbb290565b3d28589b4a7cb7aecb2ba018eebdde3597bd7e13/pyotp-2.2.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "16cb1a08d38777ca74b5e9c7803810b6", "sha256": "92c3973ba91273e7e4a7fd4a1020ae4b050ccd2e149b554911e1b45ca458ac2d" }, "downloads": -1, "filename": "pyotp-2.2.4.tar.gz", "has_sig": true, "md5_digest": "16cb1a08d38777ca74b5e9c7803810b6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10150, "upload_time": "2017-01-04T19:16:09", "url": "https://files.pythonhosted.org/packages/ac/0c/bd96508e36956ae627e527a7a7fba486865a738b4682e7290cd0e7c34f52/pyotp-2.2.4.tar.gz" } ], "2.2.5": [ { "comment_text": "", "digests": { "md5": "569be7232404b404764417d059aed9ca", "sha256": "ba4506d028be8617122681ca828676da929871cc2881a0aedf3149f834f68293" }, "downloads": -1, "filename": "pyotp-2.2.5-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "569be7232404b404764417d059aed9ca", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 11508, "upload_time": "2017-06-03T18:51:51", "url": "https://files.pythonhosted.org/packages/72/53/58de31b0321b3da5c6647bf2456b3bf29364fc4d4dc02c4bd9010d6db097/pyotp-2.2.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "276cabc14342a5364d4d80a609a1f49e", "sha256": "e23e3e1e9ba75429ee6a17cb6b41aadd09658158aa1f66017d3b00413293fd33" }, "downloads": -1, "filename": "pyotp-2.2.5.tar.gz", "has_sig": true, "md5_digest": "276cabc14342a5364d4d80a609a1f49e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10608, "upload_time": "2017-06-03T18:51:48", "url": "https://files.pythonhosted.org/packages/2a/52/cac703de65687387f18b0b32548a7fb803ffab5e66b79b3b8f0b942eaa7b/pyotp-2.2.5.tar.gz" } ], "2.2.6": [ { "comment_text": "", "digests": { "md5": "63603ec054c4e794eae17d34ee5bd8c3", "sha256": "8f0df1fcf9e86cec41f0a31c91212b1a04fca6dd353426917222b21864b9310b" }, "downloads": -1, "filename": "pyotp-2.2.6-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "63603ec054c4e794eae17d34ee5bd8c3", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 11481, "upload_time": "2017-06-10T16:14:05", "url": "https://files.pythonhosted.org/packages/12/1f/0b27e24456a9bb89b418602f61cbcad4861b55cf872469643ed13b38ff9b/pyotp-2.2.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "125ae00de613905bb8d3b4c12bd1e71d", "sha256": "dd9130dd91a0340d89a0f06f887dbd76dd07fb95a8886dc4bc401239f2eebd69" }, "downloads": -1, "filename": "pyotp-2.2.6.tar.gz", "has_sig": true, "md5_digest": "125ae00de613905bb8d3b4c12bd1e71d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10602, "upload_time": "2017-06-10T16:14:02", "url": "https://files.pythonhosted.org/packages/67/69/131f5ad63de40c30f3be88d891e4a2ea1b69398528db99bc1e5c543422fa/pyotp-2.2.6.tar.gz" } ], "2.2.7": [ { "comment_text": "", "digests": { "md5": "703fa72acc377829fcc8b412b8b153b3", "sha256": "1e3dc3d16919c4efac528d1dbecc17de1a97c4ecfdacb89d7726ed2c6645adff" }, "downloads": -1, "filename": "pyotp-2.2.7-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "703fa72acc377829fcc8b412b8b153b3", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 9200, "upload_time": "2018-11-06T00:23:51", "url": "https://files.pythonhosted.org/packages/8d/3b/523e8fbe65fc71294b98d84832577cdb4610b2aaee9ddbd8ee571a562895/pyotp-2.2.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7d3f89d8c4805e0facf6ebb6f9cebd29", "sha256": "be0ffeabddaa5ee53e7204e7740da842d070cf69168247a3d0c08541b84de602" }, "downloads": -1, "filename": "pyotp-2.2.7.tar.gz", "has_sig": true, "md5_digest": "7d3f89d8c4805e0facf6ebb6f9cebd29", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11416, "upload_time": "2018-11-06T00:23:49", "url": "https://files.pythonhosted.org/packages/b1/ab/477cda97b6ca7baced5106471cb1ac1fe698d1b035983b9f8ee3422989eb/pyotp-2.2.7.tar.gz" } ], "2.2.8": [ { "comment_text": "", "digests": { "md5": "e1ad8f6b23e6780a9eab8a868e89278e", "sha256": "0bbc171277f171b6fe02483dfe2e10334af0403fe8728c1098cfbafac06b499f" }, "downloads": -1, "filename": "pyotp-2.2.8-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "e1ad8f6b23e6780a9eab8a868e89278e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10255, "upload_time": "2019-07-26T16:54:37", "url": "https://files.pythonhosted.org/packages/c4/ed/acfa383d30e6d0a0bb7e296b45df1fbe4fffd3e10f151db188d02c9d3a7d/pyotp-2.2.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b9dcf69d4af51f471336e3aff1de7639", "sha256": "dbc87f2727b006b31c80728a0e703b62e977f33f024fce9b62a371d5bea61625" }, "downloads": -1, "filename": "pyotp-2.2.8.tar.gz", "has_sig": true, "md5_digest": "b9dcf69d4af51f471336e3aff1de7639", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11676, "upload_time": "2019-07-26T16:54:39", "url": "https://files.pythonhosted.org/packages/bb/9d/b37d86c510f8c107ebe51353aa139e2c993b6df3fb46cc8e0b60fad53962/pyotp-2.2.8.tar.gz" } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "4206e38d484020d5e092255002825b79", "sha256": "c88f37fd47541a580b744b42136f387cdad481b560ef410c0d85c957eb2a2bc0" }, "downloads": -1, "filename": "pyotp-2.3.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "4206e38d484020d5e092255002825b79", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10261, "upload_time": "2019-07-26T17:00:13", "url": "https://files.pythonhosted.org/packages/27/64/4fd5eb23f4ba502049cdc74de219a69d06c89d4282a2fec5ad1e83a6bee4/pyotp-2.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d445da203b0e60b5b386d07fdb431e14", "sha256": "fc537e8acd985c5cbf51e11b7d53c42276fee017a73aec7c07380695671ca1a1" }, "downloads": -1, "filename": "pyotp-2.3.0.tar.gz", "has_sig": true, "md5_digest": "d445da203b0e60b5b386d07fdb431e14", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11672, "upload_time": "2019-07-26T17:00:15", "url": "https://files.pythonhosted.org/packages/f7/15/395c4945ea6bc37e8811280bb675615cb4c2b2c1cd70bdc43329da91a386/pyotp-2.3.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "4206e38d484020d5e092255002825b79", "sha256": "c88f37fd47541a580b744b42136f387cdad481b560ef410c0d85c957eb2a2bc0" }, "downloads": -1, "filename": "pyotp-2.3.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "4206e38d484020d5e092255002825b79", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10261, "upload_time": "2019-07-26T17:00:13", "url": "https://files.pythonhosted.org/packages/27/64/4fd5eb23f4ba502049cdc74de219a69d06c89d4282a2fec5ad1e83a6bee4/pyotp-2.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d445da203b0e60b5b386d07fdb431e14", "sha256": "fc537e8acd985c5cbf51e11b7d53c42276fee017a73aec7c07380695671ca1a1" }, "downloads": -1, "filename": "pyotp-2.3.0.tar.gz", "has_sig": true, "md5_digest": "d445da203b0e60b5b386d07fdb431e14", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11672, "upload_time": "2019-07-26T17:00:15", "url": "https://files.pythonhosted.org/packages/f7/15/395c4945ea6bc37e8811280bb675615cb4c2b2c1cd70bdc43329da91a386/pyotp-2.3.0.tar.gz" } ] }