{ "info": { "author": "James Rowe", "author_email": "jnrowe@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 6 - Mature", "Intended Audience :: Developers", "Intended Audience :: Other Audience", "License :: OSI Approved", "License :: OSI Approved :: GNU General Public License (GPL)", "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Topic :: Other/Nonlisted Topic", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Text Processing", "Topic :: Text Processing :: Indexing" ], "description": "``pyisbn`` - A module for working with 10- and 13-digit ISBNs\n=============================================================\n\n|status| |travis| |coveralls| |pypi| |pyvers| |readthedocs| |develop|\n\nIntroduction\n------------\n\n``pyisbn`` is a `GPL v3`_ licensed module for working with various book\nidentification numbers. It includes functions for conversion, verification and\ngeneration of checksums. It also includes basic classes for representing ISBNs\nas objects.\n\nSee the ``doc`` directory for installation instructions and usage information,\nyou can also `view the content online`_.\n\nRequirements\n------------\n\n``pyisbn`` does not depend on any modules that aren\u2019t included in Python_\u2019s\nstandard library, and as such should run with Python 3.6 or newer [#]_. If\n``pyisbn`` doesn\u2019t work with the version of Python you have installed, open an\nissue_ and I\u2019ll endeavour to fix it.\n\nThe module have been tested on many UNIX-like systems, including Linux and OS X,\nbut it should work fine on other systems too.\n\n.. [#] Versions v1.2 and earlier will run on older Python versions, right back\n to 2.4.\n\nExample\n-------\n\nThe simplest way to show how ``pyisbn`` works is by example, and here goes::\n\n >>> import pyisbn\n >>> Permutation_City = \"1-85798-218-5\"\n >>> pyisbn.validate(Permutation_City)\n True\n >>> pyisbn.convert(Permutation_City)\n '9781857982183'\n\nor using the object pattern use::\n\n >>> Permutation_City = pyisbn.Isbn10(\"1-85798-218-5\")\n >>> Permutation_City.validate()\n True\n >>> Permutation_City.convert()\n '9781857982183'\n >>> print(Permutation_City)\n ISBN 1-85798-218-5\n\nAll independent functions and classes contain (hopefully) useful docstrings.\n\nAPI Stability\n-------------\n\nNow that ``pyisbn`` 1.0 has been released the API will is frozen, and any\nchanges which aren\u2019t backwards compatible will force a major version bump.\n\nContributors\n------------\n\nI\u2019d like to thank the following people who have contributed to ``pyisbn``.\n\nPatches\n'''''''\n\n* Christopher Wells\n\nBug reports\n'''''''''''\n\n* James Gaffney\n* hbc (bcho)\n* Wen Heping\n* Max Klein (notconfusing)\n* Matt Leighy\n* Nathaniel M. Beaver (nbeaver)\n* Randy Syring (rsyring)\n* Stephen Thorne\n\nIdeas\n'''''\n\n* Kevin Simmons\n\nIf I\u2019ve forgotten to include your name I wholeheartedly apologise. Just drop\nme a mail_ and I\u2019ll update the list!\n\nBugs\n----\n\nIf you find any problems, bugs or just have a question about this package\neither file an issue_ or drop me a mail_.\n\nIf you\u2019ve found a bug please attempt to include a minimal testcase so I can\nreproduce the problem, or even better a patch!\n\n.. _GPL v3: http://www.gnu.org/licenses/\n.. _view the content online: http://pyisbn.rtfd.org/\n.. _Python: http://www.python.org/\n.. _issue: https://github.com/JNRowe/pyisbn/issues\n.. _mail: jnrowe@gmail.com\n\n.. |travis| image:: https://img.shields.io/travis/JNRowe/pyisbn.png\n :target: https://travis-ci.org/JNRowe/pyisbn\n :alt: Test state on master\n\n.. |develop| image:: https://img.shields.io/github/commits-since/JNRowe/pyisbn/latest.png\n :target: https://github.com/JNRowe/pyisbn\n :alt: Recent developments\n\n.. |pyvers| image:: https://img.shields.io/pypi/pyversions/pyisbn.png\n :alt: Supported Python versions\n\n.. |status| image:: https://img.shields.io/pypi/status/pyisbn.png\n :alt: Development status\n\n.. |coveralls| image:: https://img.shields.io/coveralls/github/JNRowe/pyisbn/master.png\n :target: https://coveralls.io/repos/JNRowe/pyisbn\n :alt: Coverage state on master\n\n.. |pypi| image:: https://img.shields.io/pypi/v/pyisbn.png\n :target: https://pypi.org/project/pyisbn/\n :alt: Current PyPI release\n\n.. |readthedocs| image:: https://img.shields.io/readthedocs/pyisbn/stable.png\n :target: https://pyisbn.readthedocs.io/\n :alt: Documentation\n\n\n", "description_content_type": "", "docs_url": "https://pythonhosted.org/pyisbn/", "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/JNRowe/pyisbn", "keywords": "ISBN,ISBN-10,ISBN-13,SBN", "license": "GPL-3", "maintainer": "", "maintainer_email": "", "name": "pyisbn", "package_url": "https://pypi.org/project/pyisbn/", "platform": "", "project_url": "https://pypi.org/project/pyisbn/", "project_urls": { "Contributors": "https://github.com/JNRowe/pyisbn/contributors/", "Documentation": "https://pyisbn.readthedocs.io/", "Git repository": "https://github.com/JNRowe/pyisbn/", "Homepage": "https://github.com/JNRowe/pyisbn", "Issue tracker": "https://github.com/JNRowe/pyisbn/issues/" }, "release_url": "https://pypi.org/project/pyisbn/1.3.1/", "requires_dist": null, "requires_python": "", "summary": "A module for working with 10- and 13-digit ISBNs", "version": "1.3.1", "yanked": false, "yanked_reason": null }, "last_serial": 6628716, "releases": { "0.1.1": [], "0.2.0": [], "0.3.0": [], "0.4.0": [], "0.5.0": [], "0.5.1": [], "0.5.2": [ { "comment_text": "", "digests": { "md5": "df63ca1af91db9e1b1c1ec1af2c6162b", "sha256": "920898dd5f774049f32412e59540641d3cebca2fd4550ec70fb0038a3afdac29" }, "downloads": -1, "filename": "pyisbn-0.5.2.tar.gz", "has_sig": true, "md5_digest": "df63ca1af91db9e1b1c1ec1af2c6162b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7029, "upload_time": "2010-01-14T13:05:53", "upload_time_iso_8601": "2010-01-14T13:05:53.307849Z", "url": "https://files.pythonhosted.org/packages/8a/c4/9f9ba568fe24d34041a1ed2bbb75bacbab95f64d8809c9ab55fc877c4a53/pyisbn-0.5.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "6e665b74187d37c2cf78701799caeb40", "sha256": "7bfd4c9326b0dbcad334c9cb5304f344452e07db0f5c2947ff0649d626bc5941" }, "downloads": -1, "filename": "pyisbn-0.6.0.tar.gz", "has_sig": false, "md5_digest": "6e665b74187d37c2cf78701799caeb40", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31610, "upload_time": "2011-05-13T17:17:47", "upload_time_iso_8601": "2011-05-13T17:17:47.054866Z", "url": "https://files.pythonhosted.org/packages/d8/f9/1cf25096d08c5e8aaac21cf0d78dc643ccd84e784dd6c18e801b344a4f57/pyisbn-0.6.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "d58e961c707c5ba8485666140d3ec9bb", "sha256": "c5023111859d1ababb6cc0b3f195ea6de45863e26529dfac9a476e5f0003407c" }, "downloads": -1, "filename": "pyisbn-0.6.1.tar.bz2", "has_sig": true, "md5_digest": "d58e961c707c5ba8485666140d3ec9bb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29451, "upload_time": "2012-12-19T17:50:08", "upload_time_iso_8601": "2012-12-19T17:50:08.274659Z", "url": "https://files.pythonhosted.org/packages/7a/af/2b8746b7032382862941578c8e7be5894f35630308207fb56f4d9e2a30b2/pyisbn-0.6.1.tar.bz2", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0b464d406613945d355a37f193206f6e", "sha256": "5db45843ff94c312b82e57aacc36d554c2f1b84078bba7ea6e29cc18431f0a4b" }, "downloads": -1, "filename": "pyisbn-0.6.1.tar.gz", "has_sig": true, "md5_digest": "0b464d406613945d355a37f193206f6e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33082, "upload_time": "2012-12-19T17:50:18", "upload_time_iso_8601": "2012-12-19T17:50:18.442823Z", "url": "https://files.pythonhosted.org/packages/c2/59/e4b14bbe3c400e50ba0a966c11bf910251a3f3bca52ca6a840cb715ca21b/pyisbn-0.6.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "7d89257bcbbf9e16873091e9af16a789", "sha256": "0ac991a06729d17f1df35158722c53df7f476a30518e55b47987476fca3a3bb6" }, "downloads": -1, "filename": "pyisbn-0.6.2.tar.bz2", "has_sig": true, "md5_digest": "7d89257bcbbf9e16873091e9af16a789", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29992, "upload_time": "2013-10-12T13:55:19", "upload_time_iso_8601": "2013-10-12T13:55:19.681949Z", "url": "https://files.pythonhosted.org/packages/3b/7f/b1a0aa16dd319c669e9b9af1da6a97a6deabde3b950e8e7ce261c6ed49d2/pyisbn-0.6.2.tar.bz2", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eb5fb99268140a7c28ee182a98d26435", "sha256": "5d34e1df08bd55de0549536d678f4e65c00fa6401df70884f8871cbfab548f16" }, "downloads": -1, "filename": "pyisbn-0.6.2.tar.gz", "has_sig": true, "md5_digest": "eb5fb99268140a7c28ee182a98d26435", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33890, "upload_time": "2013-10-12T13:55:23", "upload_time_iso_8601": "2013-10-12T13:55:23.161781Z", "url": "https://files.pythonhosted.org/packages/67/77/63d1ecf6b3b20c14ee8275610dd5605e6a2905f96ec21b1e71a65f2ec69a/pyisbn-0.6.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "80d7aa37f9dd26f10da6040665cc8007", "sha256": "5870a442be8c97234cf7ada803ee715567eb59751d3f59d919d74189af9a6638" }, "downloads": -1, "filename": "pyisbn-0.6.3.tar.bz2", "has_sig": true, "md5_digest": "80d7aa37f9dd26f10da6040665cc8007", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30435, "upload_time": "2013-10-15T14:21:24", "upload_time_iso_8601": "2013-10-15T14:21:24.699617Z", "url": "https://files.pythonhosted.org/packages/93/13/c2b7709c8b60196295f43b3c38155a6956b6c1a0eb5c9aa5d9623dbf879d/pyisbn-0.6.3.tar.bz2", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "10aa88505d4250a83eb04d4a8a0ffcb3", "sha256": "5188fec3ef37b44903792f155c210262441e5ec7a6a3a39f561a6d013f1540aa" }, "downloads": -1, "filename": "pyisbn-0.6.3.tar.gz", "has_sig": true, "md5_digest": "10aa88505d4250a83eb04d4a8a0ffcb3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34358, "upload_time": "2013-10-15T14:21:30", "upload_time_iso_8601": "2013-10-15T14:21:30.477828Z", "url": "https://files.pythonhosted.org/packages/3a/b9/61dec614e971869289951779b9b59a17289f73efcece38272d8f04e9810a/pyisbn-0.6.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "25792e94ab2803599411ed17707e4e5b", "sha256": "4372f8b256750eeeb554df9000a5df7e8d452fd3186b62a0360158d53dbc43cc" }, "downloads": -1, "filename": "pyisbn-1.0.0-py27-none-any.whl", "has_sig": true, "md5_digest": "25792e94ab2803599411ed17707e4e5b", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 7313, "upload_time": "2014-01-31T14:34:11", "upload_time_iso_8601": "2014-01-31T14:34:11.630800Z", "url": "https://files.pythonhosted.org/packages/20/47/a73c25dc94e1b18276af1755437df4f28851a323f3efd5c2d74aabe57f1e/pyisbn-1.0.0-py27-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b378eab27e823afc7cf620b363529277", "sha256": "1561d211ab5b57429806a0303d365f0c62ae7736e85750ffe7ad0f8565b1e8a4" }, "downloads": -1, "filename": "pyisbn-1.0.0-py33-none-any.whl", "has_sig": true, "md5_digest": "b378eab27e823afc7cf620b363529277", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 7306, "upload_time": "2014-01-31T14:35:41", "upload_time_iso_8601": "2014-01-31T14:35:41.409633Z", "url": "https://files.pythonhosted.org/packages/8c/28/e48809dd807f8fa2512e04b33faef42b0d009f0d92dc978a4d77c3fdf386/pyisbn-1.0.0-py33-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7d760cafda538139fdd6ec5ef2a09b72", "sha256": "c378ea221595414ccecb23237d05259fd3e0ef814314cb3fd0093fad3206a08a" }, "downloads": -1, "filename": "pyisbn-1.0.0.tar.bz2", "has_sig": true, "md5_digest": "7d760cafda538139fdd6ec5ef2a09b72", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30392, "upload_time": "2014-01-31T14:33:48", "upload_time_iso_8601": "2014-01-31T14:33:48.639470Z", "url": "https://files.pythonhosted.org/packages/60/f0/514545fd212c63a5da3e6e3b75f3b6d4d17ad33db4138dcbd1bb43d4554d/pyisbn-1.0.0.tar.bz2", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "072dfa58b07d7b0c75a0cec70fb83620", "sha256": "85a3e5545e8e824c1c8e05a50f2962e45278ed54d74027957ae790cac6e8689f" }, "downloads": -1, "filename": "pyisbn-1.0.0.tar.gz", "has_sig": true, "md5_digest": "072dfa58b07d7b0c75a0cec70fb83620", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34604, "upload_time": "2014-01-31T14:34:01", "upload_time_iso_8601": "2014-01-31T14:34:01.393834Z", "url": "https://files.pythonhosted.org/packages/da/ee/63fdab6bd69c8d33db089a73893227ba3200868b62d97371a5ce99b4fb1a/pyisbn-1.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "4f5942056e851b453a08933d548c3edc", "sha256": "6ffb49656d8df045bdec6099cce85a123c8342b8b77646f8fb4cc52eb4ab377e" }, "downloads": -1, "filename": "pyisbn-1.0.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "4f5942056e851b453a08933d548c3edc", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 7408, "upload_time": "2016-01-08T11:10:36", "upload_time_iso_8601": "2016-01-08T11:10:36.984448Z", "url": "https://files.pythonhosted.org/packages/b1/ac/4480d291c1e0ff30850e297b31a0b8c4a46595d487454b79533608d63003/pyisbn-1.0.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8e3bcc6b6420ed7546ab86d7d4c694ac", "sha256": "dc3f52a0425a207955b242dc1648817822b77823b6ec1267bc28fda60a20e220" }, "downloads": -1, "filename": "pyisbn-1.0.1.tar.bz2", "has_sig": true, "md5_digest": "8e3bcc6b6420ed7546ab86d7d4c694ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31004, "upload_time": "2016-01-08T11:10:05", "upload_time_iso_8601": "2016-01-08T11:10:05.283119Z", "url": "https://files.pythonhosted.org/packages/6f/6f/6a11875599feb5624c0e1687e141209a027847580cc829307f400f5e4b29/pyisbn-1.0.1.tar.bz2", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ea6fe1a1d0353d6a24f6dc5e57609bf9", "sha256": "aa04efaf49446d43894b563ab6ea32fe3353a1f9146fc2e0d03f1de30e09d2c3" }, "downloads": -1, "filename": "pyisbn-1.0.1.tar.gz", "has_sig": true, "md5_digest": "ea6fe1a1d0353d6a24f6dc5e57609bf9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35254, "upload_time": "2016-01-08T11:10:25", "upload_time_iso_8601": "2016-01-08T11:10:25.549967Z", "url": "https://files.pythonhosted.org/packages/bf/93/e5b9dca5b219d30c5cd74ac5157da9dd8e523cae51776bdfd710cbbeca8f/pyisbn-1.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "fe5a54f66678fa148ef8073d719120a4", "sha256": "556b7500e072c24909650a4f7e555525218ada7ffe0a35a1943a926060ae98e3" }, "downloads": -1, "filename": "pyisbn-1.0.2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "fe5a54f66678fa148ef8073d719120a4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 7445, "upload_time": "2017-04-05T02:15:22", "upload_time_iso_8601": "2017-04-05T02:15:22.069299Z", "url": "https://files.pythonhosted.org/packages/84/d8/8c8fb433531f874e51caab295b188b0973c73007a60cc8d5d2f339e4ab03/pyisbn-1.0.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d59ca1e2bebb683e07584508633f905d", "sha256": "53f70bc5f618b020a446eded77345bfd78e35a4d8591659cc8b65dfdac54553b" }, "downloads": -1, "filename": "pyisbn-1.0.2.tar.gz", "has_sig": true, "md5_digest": "d59ca1e2bebb683e07584508633f905d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35482, "upload_time": "2017-04-05T02:15:26", "upload_time_iso_8601": "2017-04-05T02:15:26.564531Z", "url": "https://files.pythonhosted.org/packages/21/3a/0694ad4ae4129945783737bdab493f5765d9657da4f8d7592a58fef11d5d/pyisbn-1.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "4d060559a8687ea3a43b071d4446c443", "sha256": "2891b5837a7b82ad9c53f728cc61dceb65aaafdbaaccb3583b121cab609f51ee" }, "downloads": -1, "filename": "pyisbn-1.1.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "4d060559a8687ea3a43b071d4446c443", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 7398, "upload_time": "2017-04-05T03:25:33", "upload_time_iso_8601": "2017-04-05T03:25:33.885077Z", "url": "https://files.pythonhosted.org/packages/15/2f/44fe04f529a086d8d4557aebdfd68c93f3ab5cf0b868ddbe03624f7f354c/pyisbn-1.1.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "24083626f263541a41bc74742fd01640", "sha256": "862a34243c856411d86af6df4c843686028f0026a5c8ffa50eca592a310b9076" }, "downloads": -1, "filename": "pyisbn-1.1.0.tar.gz", "has_sig": true, "md5_digest": "24083626f263541a41bc74742fd01640", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35483, "upload_time": "2017-04-05T03:25:38", "upload_time_iso_8601": "2017-04-05T03:25:38.809771Z", "url": "https://files.pythonhosted.org/packages/03/af/14b4c2c930790fd99b1a7c0dd431ddfdd28a53e41841ddf99ece6a854b55/pyisbn-1.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "9c11d16f98a96fd022e3ace44d303957", "sha256": "15f6463115265068bf43720dbac657a82bffb0ebdd818064fc14bb01f3585a70" }, "downloads": -1, "filename": "pyisbn-1.2.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "9c11d16f98a96fd022e3ace44d303957", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6137, "upload_time": "2018-07-28T15:24:47", "upload_time_iso_8601": "2018-07-28T15:24:47.897236Z", "url": "https://files.pythonhosted.org/packages/53/f1/e3707cf08061ea594a70c5da0b4686580b140650549c66f246bdcf929e81/pyisbn-1.2.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f41f1370ed9f90f0f1ac3b3962ef6c49", "sha256": "295dd0ebd50e0f88b614cb8363ac23d11adf2319ce46d22ae8a59109e6d47319" }, "downloads": -1, "filename": "pyisbn-1.2.0.tar.gz", "has_sig": true, "md5_digest": "f41f1370ed9f90f0f1ac3b3962ef6c49", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30131, "upload_time": "2018-07-28T15:24:52", "upload_time_iso_8601": "2018-07-28T15:24:52.065566Z", "url": "https://files.pythonhosted.org/packages/40/ab/ddf37d9e696d22d6da9c18cab4187474e4d831054a470bea3f82b19243b4/pyisbn-1.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "d74bf5b63f59fc7aa1089050461b42f5", "sha256": "834005531f832dd900a96d95edd3eddf6b5e48f965e8109b7d94996f3eb13cf7" }, "downloads": -1, "filename": "pyisbn-1.2.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "d74bf5b63f59fc7aa1089050461b42f5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6165, "upload_time": "2018-07-31T12:52:45", "upload_time_iso_8601": "2018-07-31T12:52:45.596905Z", "url": "https://files.pythonhosted.org/packages/fc/de/a091d121b06cbfc7ac78bba8091a580c1a30fcacc6d6da4f019cce0b5bee/pyisbn-1.2.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0e371b42bfa3c60f670529e8e574b0ea", "sha256": "a60e8115627764fc4789f03966536db044de1644f17f43815a7bb5f63a793d6c" }, "downloads": -1, "filename": "pyisbn-1.2.1.tar.gz", "has_sig": true, "md5_digest": "0e371b42bfa3c60f670529e8e574b0ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38066, "upload_time": "2018-07-31T12:52:50", "upload_time_iso_8601": "2018-07-31T12:52:50.283369Z", "url": "https://files.pythonhosted.org/packages/14/92/7fb87614aee7dc610f727727a42b5263acd80007d7d58d7372ed27793470/pyisbn-1.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "c6582b8eab8b640cebe984fdb1fd035c", "sha256": "9c3ed3ad42d8985d8dd555e8dd2785db02251b847ecb792dd13265048a67e094" }, "downloads": -1, "filename": "pyisbn-1.2.3-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "c6582b8eab8b640cebe984fdb1fd035c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 20101, "upload_time": "2019-10-24T21:13:04", "upload_time_iso_8601": "2019-10-24T21:13:04.430637Z", "url": "https://files.pythonhosted.org/packages/0c/b0/d7de43560b1aa12a77644547067a7de8f11889fa9251cd94bf78d027e41e/pyisbn-1.2.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1cff67b240a31782579b5e771e5ac64d", "sha256": "b35be2787ef4b9295b063c6938335d6efb3440c127958a7390264b66cf30271e" }, "downloads": -1, "filename": "pyisbn-1.2.3.tar.gz", "has_sig": true, "md5_digest": "1cff67b240a31782579b5e771e5ac64d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40107, "upload_time": "2019-10-24T21:13:09", "upload_time_iso_8601": "2019-10-24T21:13:09.971439Z", "url": "https://files.pythonhosted.org/packages/25/20/540db400c3d85191f6ea36d6dac39470702fdfefcdbbc70547d3d84dbc48/pyisbn-1.2.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "f94d0b2706faa7bfed5502959d3775cc", "sha256": "281d32123244b0c02a9a9995ef89a8589629c36838ea768748624b09e693fdb3" }, "downloads": -1, "filename": "pyisbn-1.3.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "f94d0b2706faa7bfed5502959d3775cc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19894, "upload_time": "2020-02-10T01:18:28", "upload_time_iso_8601": "2020-02-10T01:18:28.806850Z", "url": "https://files.pythonhosted.org/packages/de/21/7ea266da963c15d26e27b0a9ce6a2ae39321693be4640ea897dd97cd7aea/pyisbn-1.3.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "89cb35dbacb3cbe165551f9b499021d6", "sha256": "206ee6a8200b5d1423008ce6fce8b746277c6f6d1605229f8d385d666be7578f" }, "downloads": -1, "filename": "pyisbn-1.3.0.tar.gz", "has_sig": true, "md5_digest": "89cb35dbacb3cbe165551f9b499021d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39657, "upload_time": "2020-02-10T01:18:33", "upload_time_iso_8601": "2020-02-10T01:18:33.977391Z", "url": "https://files.pythonhosted.org/packages/b4/a2/9fe5a3d14139caa37d0f24e69950b3a70f7d6838674f8e31edce45359b7d/pyisbn-1.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "4f78e954e8569b481fd218a5b3d6c97a", "sha256": "fc0cfc0c3ee5e1af680374486e34b7dab9498230e4d57354686ecf4407a347c8" }, "downloads": -1, "filename": "pyisbn-1.3.1-py3-none-any.whl", "has_sig": true, "md5_digest": "4f78e954e8569b481fd218a5b3d6c97a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 19913, "upload_time": "2020-02-14T07:27:16", "upload_time_iso_8601": "2020-02-14T07:27:16.721987Z", "url": "https://files.pythonhosted.org/packages/4d/eb/834a7eb6ed4c23eb4bb8319b6e24ffa931b293582cf886b43190e0d6295c/pyisbn-1.3.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3e6e10e6a4162f77c3368c2c50e052fc", "sha256": "70f563817969b3ff0850689e50bc7ff75ee9b865c3f80f835964b1306c4ed519" }, "downloads": -1, "filename": "pyisbn-1.3.1.tar.gz", "has_sig": true, "md5_digest": "3e6e10e6a4162f77c3368c2c50e052fc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39995, "upload_time": "2020-02-14T07:27:21", "upload_time_iso_8601": "2020-02-14T07:27:21.801531Z", "url": "https://files.pythonhosted.org/packages/62/16/03fc8f1169a9a0024a644d3ca3c66e305df2453ccace917972a715f41366/pyisbn-1.3.1.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "4f78e954e8569b481fd218a5b3d6c97a", "sha256": "fc0cfc0c3ee5e1af680374486e34b7dab9498230e4d57354686ecf4407a347c8" }, "downloads": -1, "filename": "pyisbn-1.3.1-py3-none-any.whl", "has_sig": true, "md5_digest": "4f78e954e8569b481fd218a5b3d6c97a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 19913, "upload_time": "2020-02-14T07:27:16", "upload_time_iso_8601": "2020-02-14T07:27:16.721987Z", "url": "https://files.pythonhosted.org/packages/4d/eb/834a7eb6ed4c23eb4bb8319b6e24ffa931b293582cf886b43190e0d6295c/pyisbn-1.3.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3e6e10e6a4162f77c3368c2c50e052fc", "sha256": "70f563817969b3ff0850689e50bc7ff75ee9b865c3f80f835964b1306c4ed519" }, "downloads": -1, "filename": "pyisbn-1.3.1.tar.gz", "has_sig": true, "md5_digest": "3e6e10e6a4162f77c3368c2c50e052fc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39995, "upload_time": "2020-02-14T07:27:21", "upload_time_iso_8601": "2020-02-14T07:27:21.801531Z", "url": "https://files.pythonhosted.org/packages/62/16/03fc8f1169a9a0024a644d3ca3c66e305df2453ccace917972a715f41366/pyisbn-1.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }