{ "info": { "author": "Manu Phatak", "author_email": "bionikspoon@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: End Users/Desktop", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Games/Entertainment :: Puzzle Games", "Topic :: Terminals" ], "description": ".. START Source defined in docs/github_docs.py\n\n\n.. This document was procedurally generated by docs/github_docs.py on Monday, December 28, 2015\n\n\n.. END Source defined in docs/github_docs.py\n.. START Source defined in docs/github_docs.py\n\n\n.. role:: mod(literal)\n.. role:: func(literal)\n.. role:: data(literal)\n.. role:: const(literal)\n.. role:: class(literal)\n.. role:: meth(literal)\n.. role:: attr(literal)\n.. role:: exc(literal)\n.. role:: obj(literal)\n.. role:: envvar(literal)\n\n\n.. END Source defined in docs/github_docs.py\n.. START Source defined in docs/source/_partial/readme_title.rst\n\n==============\npython_hangman\n==============\n\n.. image:: https://badge.fury.io/py/python_hangman.svg\n :target: https://pypi.python.org/pypi/python_hangman/\n :alt: Latest Version\n\n.. image:: https://img.shields.io/pypi/status/python_hangman.svg\n :target: https://pypi.python.org/pypi/python_hangman/\n :alt: Development Status\n\n.. image:: https://travis-ci.org/bionikspoon/python_hangman.svg?branch=develop\n :target: https://travis-ci.org/bionikspoon/python_hangman?branch=develop\n :alt: Build Status\n\n.. image:: https://coveralls.io/repos/bionikspoon/python_hangman/badge.svg?branch=develop\n :target: https://coveralls.io/github/bionikspoon/python_hangman?branch=develop&service=github\n :alt: Coverage Status\n\n.. image:: https://readthedocs.org/projects/python-hangman/badge/?version=develop\n :target: https://python-hangman.readthedocs.org/en/develop/?badge=develop\n :alt: Documentation Status\n\n\n\n\nA well tested, cli, python version-agnostic, multi-platform hangman game. It's built following a TDD workflow and a MVC design pattern. Each component services a sensibly distinct logical purpose. Python Hangman is a version agnostic, tox tested, travis-backed program! Documented and distributed.\n\n\n.. END Source defined in docs/source/_partial/readme_title.rst\n.. START Source defined in docs/source/_partial/readme_features.rst\n\nFeatures\n========\n\n- Hangman!\n- Documentation: https://python_hangman.readthedocs.org\n- Open Source: https://github.com/bionikspoon/python_hangman\n- Idiomatic code.\n- Thoroughly tested with very high coverage.\n- Python version agnostic.\n- Demonstrates MVC design out of the scope of web development.\n- MIT license\n\n.. image:: https://cloud.githubusercontent.com/assets/5052422/11611464/00822c5c-9b95-11e5-9fcb-8c10fd9be7df.jpg\n :alt: Screenshot\n\n\n.. END Source defined in docs/source/_partial/readme_features.rst\n.. START Source defined in docs/source/_partial/readme_compatibility.rst\n\nCompatibility\n=============\n\n.. image:: https://img.shields.io/badge/Python-2.6,_2.7,_3.3,_3.4,_3.5,_pypy-brightgreen.svg\n :target: https://pypi.python.org/pypi/python_hangman/\n :alt: Supported Python versions\n\n\n- Python 2.6\n- Python 2.7\n- Python 3.3\n- Python 3.4\n- Python 3.5\n- PyPy\n\n\n.. END Source defined in docs/source/_partial/readme_compatibility.rst\n.. START Source defined in docs/source/installation.rst\n\n\nInstallation\n============\n\nAt the command line either via easy_install or pip\n\n.. code-block:: shell\n\n $ mkvirtualenv hangman # optional for venv users\n $ pip install python_hangman\n $ hangman\n\n\n**Uninstall**\n\n.. code-block:: shell\n\n $ pip uninstall python_hangman\n\n\n.. END Source defined in docs/source/installation.rst\n.. START Source defined in docs/source/goals.rst\n\nGoals\n=====\n\n2.0.0\n-----\n\n**MVC pattern**. The goal was to explicitly demonstrate an MVC pattern out of the scope of web development.\n\n**Idiomatic code**. In this overhaul there's a big emphasis on idiomatic code. The code should be describing its' own intention with the clarity your grandmother could read.\n\n\n1.0.0\n-----\n\nLearning! This was a Test Driven Development(TDD) exercise.\n\nAlso, explored:\n\n- Tox, test automation\n- Travis CI\n- Python version agnostic programming\n- Setuptools\n- Publishing on pip\n- Coverage via coveralls\n- Documentation with sphinx and ReadTheDocs\n- Cookiecutter development\n\n\n.. END Source defined in docs/source/goals.rst\n.. START Source defined in docs/source/design.rst\n\nDesign\n======\n\nThis game roughly follows the **Model-View-Controller(MVC)** pattern. In the latest overhaul, these roles have been explicitly named: :mod:`hangman.model`, :mod:`hangman.view`, :mod:`hangman.controller`.\n\nTraditionally in MVC the ``controller`` is the focal point. It tells the ``view`` what information to collect from the user and what to show. It uses that information to communicate with the ``model``--also, the data persistence later--and determine the next step. This Hangman MVC adheres to these principals\n\nModel\n-----\n\nThe model is very simply the hangman game instance--:class:`hangman.model.Hangman`. It's a class. Every class should have \"state\" and the methods of that class should manage that state. In this case, the \"state\" is the current \"state of the game\". The public API are for managing that state.\n\nThe entirety of the game logic is contained in :class:`hangman.model.Hangman`. You could technically play the game in the python console by instantiating the class, submitting guesses with the method :meth:`hangman.model.Hangman.guess` and printing the game state.\n\nFor example:\n\n\n.. code-block:: python\n\n >>> from hangman.model import Hangman\n >>> game = Hangman(answer='hangman')\n >>> game.guess('a')\n hangman(status='_A___A_', misses=[], remaining_turns=10)\n\n >>> game.guess('n').guess('z').guess('e')\n hangman(status='_AN__AN', misses=['E', 'Z'], remaining_turns=8)\n\n >>> game.status\n '_AN__AN'\n\n >>> game.misses\n ['E', 'Z']\n\n >>> game.remaining_turns\n 8\n\n\nView\n----\n\n:mod:`hangman.view` is a collection of stateless functions that represent the presentation layer. When called these functions handles printing the art to the console, and collecting input from the user.\n\nController\n----------\n\nIn this program, the ``controller`` is actually the \"game_loop\"--:func:`hangman.controller.game_loop`. I still think of it as a ``controller`` because the role it plays--communicating I/O from the view with the model-persistence layer.\n\nThe controller tells the view later what to print and what data to collect. It uses that information update the state of the game (model) and handle game events.\n\n\n.. END Source defined in docs/source/design.rst\n.. START Source defined in docs/source/_partial/readme_call_diagram.rst\n\nCall Diagram\n============\n\n.. image:: https://cloud.githubusercontent.com/assets/5052422/11611800/bfc9ec20-9ba5-11e5-9b18-95d361e7ba23.png\n :alt: Call Diagram\n\n\n.. END Source defined in docs/source/_partial/readme_call_diagram.rst\n.. START Source defined in docs/source/_partial/readme_credits.rst\n\nCredits\n=======\n\nTools used in rendering this package:\n\n* Cookiecutter_\n* `bionikspoon/cookiecutter-pypackage`_ forked from `audreyr/cookiecutter-pypackage`_\n\n.. _Cookiecutter: https://github.com/audreyr/cookiecutter\n.. _`bionikspoon/cookiecutter-pypackage`: https://github.com/bionikspoon/cookiecutter-pypackage\n.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage\n\n\n.. END Source defined in docs/source/_partial/readme_credits.rst\n\n\nHistory\n=======\n\nNext Release\n------------\n\n* Stay Posted\n\n2.2.0 (2015-18-05)\n------------------\n\n* Fixed max recursion issue with game loop.\n* Updated requirements.\n* Removed gratuitous docs -- less is more.\n* 2.2.1 Handle ctrl+d EOF to exit.\n* 2.2.2 Fix broken coverage report.\n* 2.2.3 Fix broken wheel\n\n\n2.1.0 (2015-18-05)\n------------------\n\n* Updated docs, divided and automated in a more reasonable way.\n* renamed the github repo to mirror pypi name.\n* 2.1.1 Fix pypi's rst render\n\n\n2.0.0 (2015-12-05)\n------------------\n\n* Establishing a changelog.\n* Massive refactoring, explicit MVC structure.\n* Code is even more idiomatic!\n* Created a `FlashMessage` utility.\n* Removed poorly implemented classes in favor of stateless functions.\n* Add, Remove support for py35, py32.\n* 100% code coverage. (2 untestable, inconsequential lines ignored)", "description_content_type": null, "docs_url": "https://pythonhosted.org/python_hangman/", "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/bionikspoon/python_hangman", "keywords": "python_hangman Manu Phatak", "license": "MIT", "maintainer": null, "maintainer_email": null, "name": "python_hangman", "package_url": "https://pypi.org/project/python_hangman/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/python_hangman/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/bionikspoon/python_hangman" }, "release_url": "https://pypi.org/project/python_hangman/2.2.3/", "requires_dist": null, "requires_python": null, "summary": "Python Hangman TDD/MVC demonstration.", "version": "2.2.3" }, "last_serial": 1879664, "releases": { "1.2.1": [ { "comment_text": "", "digests": { "md5": "c14f75d34507eccf579af602353f227a", "sha256": "6d17bb12393531c7b00867bd60b29041dbf8b709c59d5350e67562eab5a62862" }, "downloads": -1, "filename": "python_hangman-1.2.1.tar.gz", "has_sig": false, "md5_digest": "c14f75d34507eccf579af602353f227a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4090, "upload_time": "2015-04-10T05:59:17", "url": "https://files.pythonhosted.org/packages/9a/9a/8dff8d6f14dc46cea0afd8ef879c25bbfd417cf8d796147f8a2d33fff4bc/python_hangman-1.2.1.tar.gz" } ], "1.2.3": [ { "comment_text": "built for Linux-3.16.0-31-generic-x86_64-with-glibc2.4", "digests": { "md5": "29fdedfa5de1139520e44abf76625244", "sha256": "6f553f34ab7503ac3a479f495715d7ff56202573e76e765347d174bfb7fb81d8" }, "downloads": -1, "filename": "python_hangman-1.2.3.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "29fdedfa5de1139520e44abf76625244", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 8856, "upload_time": "2015-04-10T07:13:30", "url": "https://files.pythonhosted.org/packages/5d/de/a70e6a624b66ccfe914f3d667f8ba0a86f45223914e2bef04456d4f0768c/python_hangman-1.2.3.linux-x86_64.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "5271f888b03618adc2acac350c9d4302", "sha256": "ea00dd5fb4603cba50bb4a239bbbbd8566f186c396b35a6ad0d8c59d2aa94801" }, "downloads": -1, "filename": "python_hangman-1.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5271f888b03618adc2acac350c9d4302", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 11428, "upload_time": "2015-04-17T21:53:19", "url": "https://files.pythonhosted.org/packages/69/20/9bf8f56ef4a8adae703ab6f028d6f866abdfea775cafa0d4918eb5d4b18a/python_hangman-1.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "75a74fb8cd1aebdc5746a550e44cc628", "sha256": "6e6f4bb3829b6b56b992aaf2e29618828b6b55f53f76f15e18dbcc173455ba06" }, "downloads": -1, "filename": "python_hangman-1.3.1.tar.gz", "has_sig": false, "md5_digest": "75a74fb8cd1aebdc5746a550e44cc628", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10827, "upload_time": "2015-04-17T21:53:15", "url": "https://files.pythonhosted.org/packages/10/ba/65766ac27244db102e6beb0f377e10b173612cb2ecfe6438b37c304f76b0/python_hangman-1.3.1.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "95db3a25d12058e226765d10554ff8b4", "sha256": "83deafc638bbc3bb4fc8960e7ef9be28771b49ff59e112a686e28d41907b8d77" }, "downloads": -1, "filename": "python_hangman-1.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "95db3a25d12058e226765d10554ff8b4", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 11406, "upload_time": "2015-04-17T22:33:37", "url": "https://files.pythonhosted.org/packages/d4/54/0d8ae39824b5f6581fff5d8cf0a366587bc55b21f3c06d1c6818c9e716c1/python_hangman-1.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f4c16e26e974312725cc3ca21ebb530f", "sha256": "d032252227736fd9786f68f2df1c04b88744b3f8f1cfd4dda42bb648cd7c223d" }, "downloads": -1, "filename": "python_hangman-1.4.0.tar.gz", "has_sig": false, "md5_digest": "f4c16e26e974312725cc3ca21ebb530f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10801, "upload_time": "2015-04-17T22:33:33", "url": "https://files.pythonhosted.org/packages/21/2e/ccd55415b4f772cf624ce095bdbdb632e5ecf770724d3c03b88ccff893f1/python_hangman-1.4.0.tar.gz" } ], "2.0.3": [ { "comment_text": "", "digests": { "md5": "c1c43028a8d71d691050b8a121e941c6", "sha256": "c512f916b53f1007bb8d7978cda08758a4c0c11ce98233491caa2c722c2e6dd4" }, "downloads": -1, "filename": "python_hangman-2.0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c1c43028a8d71d691050b8a121e941c6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17807, "upload_time": "2015-12-06T06:15:41", "url": "https://files.pythonhosted.org/packages/d1/14/04b92e35593d70866505dfff7793e3786d0f4e79d4b1de10bbecd969a383/python_hangman-2.0.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "921b0ec38a1f7c70ac22f09c23d018f4", "sha256": "b8038097231ed35fa9d6c06ce87ee9b5538458cc839449185ac59f71b675e567" }, "downloads": -1, "filename": "python_hangman-2.0.3.tar.gz", "has_sig": false, "md5_digest": "921b0ec38a1f7c70ac22f09c23d018f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21497, "upload_time": "2015-12-06T06:15:46", "url": "https://files.pythonhosted.org/packages/48/58/2a2dc8d54db38f983b81f78ade4b0a1ca7cad510a7617a4079839cb8704d/python_hangman-2.0.3.tar.gz" } ], "2.0.4": [ { "comment_text": "", "digests": { "md5": "48c7d82fbdae39a8d7c92935fe379f54", "sha256": "24938a066f3f9e480af410b8df22271007149e33902927ffce2bf71fa2cc72da" }, "downloads": -1, "filename": "python_hangman-2.0.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "48c7d82fbdae39a8d7c92935fe379f54", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17895, "upload_time": "2015-12-06T21:46:38", "url": "https://files.pythonhosted.org/packages/ee/53/65f3551e6addd0776efbd153f16588e7c6de0d1cf1e8625484153971faae/python_hangman-2.0.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f28efe66f1f001a03f19427ef653d62b", "sha256": "0a092768aa85ba39748132ea4a591c2e8b2b59bfeebca65d81a77aee2952ab14" }, "downloads": -1, "filename": "python_hangman-2.0.4.tar.gz", "has_sig": false, "md5_digest": "f28efe66f1f001a03f19427ef653d62b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21587, "upload_time": "2015-12-06T21:46:43", "url": "https://files.pythonhosted.org/packages/54/77/b9fa0506aa1a02c5ef7ccd60338275a5c26435369c7de2dd95663ca0ca90/python_hangman-2.0.4.tar.gz" } ], "2.0.5": [ { "comment_text": "", "digests": { "md5": "430a83caf1d70019e2b01ad7ce213c93", "sha256": "4ae9b7a9566c6db7e88e9499595c7daf0f4b0591eada185848f11790a665088b" }, "downloads": -1, "filename": "python_hangman-2.0.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "430a83caf1d70019e2b01ad7ce213c93", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17995, "upload_time": "2015-12-07T00:04:11", "url": "https://files.pythonhosted.org/packages/ce/73/c9f93c6bb44b2d02a5856d794e9b328747e7d9db7bcad00155c1843b7950/python_hangman-2.0.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3c64355410c059e6b5b46c220cda80bd", "sha256": "10582e889ac6dc4f9009ac18aa2732fbb26d4e00ebae453d685a57131b2282d3" }, "downloads": -1, "filename": "python_hangman-2.0.5.tar.gz", "has_sig": false, "md5_digest": "3c64355410c059e6b5b46c220cda80bd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21670, "upload_time": "2015-12-07T00:04:17", "url": "https://files.pythonhosted.org/packages/26/cc/bc0e0d2f206994da4e80e3cc4a71e4d288bdb97d287bdfacbfd304db9db6/python_hangman-2.0.5.tar.gz" } ], "2.0.6": [ { "comment_text": "", "digests": { "md5": "31a509de484e4ce2de0ec3806e54c4a2", "sha256": "0b786447fa3e4365a97a86e16604e08e8576066351016477971806063d779819" }, "downloads": -1, "filename": "python_hangman-2.0.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "31a509de484e4ce2de0ec3806e54c4a2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18127, "upload_time": "2015-12-07T01:24:33", "url": "https://files.pythonhosted.org/packages/9a/0b/b17165b634c6dad2ecd67ff290dbff2540b88c582a8d0f47781b6c1bf7f0/python_hangman-2.0.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4832b72e6f9f6b59aa553882ae07e09e", "sha256": "66c2a8d63eed6aacdcccc5f02148dd56befcec6b4199c55f0a1308d7087d8560" }, "downloads": -1, "filename": "python_hangman-2.0.6.tar.gz", "has_sig": false, "md5_digest": "4832b72e6f9f6b59aa553882ae07e09e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20690, "upload_time": "2015-12-07T01:24:37", "url": "https://files.pythonhosted.org/packages/20/c3/27ed15bda59aebf742cfcd55a155dbe380630c70bff35f1dc18309d38b00/python_hangman-2.0.6.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "a5d22093a0016187eec92ac255e5fc7e", "sha256": "8ad95fc5e57672ca108bd57fc754ae7d3e5dbbb5b722c9c7e725872739b5bd5a" }, "downloads": -1, "filename": "python_hangman-2.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a5d22093a0016187eec92ac255e5fc7e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 39701, "upload_time": "2015-12-18T07:24:25", "url": "https://files.pythonhosted.org/packages/d7/db/007b4825eb1f18b235e5fa80a67e0d939381dbeb4c4f2cac35f90c27bf6c/python_hangman-2.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "649eadcb9543db6658fe82ec923a0594", "sha256": "33054f637c7d620672426f38003ce50e31507006270c344b2f6214ad0af794c2" }, "downloads": -1, "filename": "python_hangman-2.1.0.tar.gz", "has_sig": false, "md5_digest": "649eadcb9543db6658fe82ec923a0594", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24462, "upload_time": "2015-12-18T07:24:29", "url": "https://files.pythonhosted.org/packages/03/27/d9aafff207246c17e37a226e103dbb0cb4c3ad647cc9b93be9602fa1e7be/python_hangman-2.1.0.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "eecc85f318ab0db4a717a55c1d9eadd6", "sha256": "82c57c823ae1973c30bfa2965befaf411d262ce3a3d125e668c6dbe2d269cdff" }, "downloads": -1, "filename": "python_hangman-2.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "eecc85f318ab0db4a717a55c1d9eadd6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 39793, "upload_time": "2015-12-18T07:37:55", "url": "https://files.pythonhosted.org/packages/12/46/76acd6a3abd4d570e09c7684c326e3d76cec924c84d949a7b3f8ee01a12d/python_hangman-2.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7a20bd06e87009bd1613069e5442ce08", "sha256": "472e3640008a2327c83aa12081a51433075eef039eff30a38d0ce42fcb7bf57e" }, "downloads": -1, "filename": "python_hangman-2.1.1.tar.gz", "has_sig": false, "md5_digest": "7a20bd06e87009bd1613069e5442ce08", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24532, "upload_time": "2015-12-18T07:38:00", "url": "https://files.pythonhosted.org/packages/41/e6/631f5cadde6cb41fb1352bebacc484baa3a0c7ef51b9b06a28cbf2161569/python_hangman-2.1.1.tar.gz" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "79904ed731e2036ed55b0e506cef181f", "sha256": "9071e1852ad7215134ac00706695bda38758726382fc0ef9bc09ee1b932a766d" }, "downloads": -1, "filename": "python_hangman-2.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "79904ed731e2036ed55b0e506cef181f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 39203, "upload_time": "2015-12-18T08:39:01", "url": "https://files.pythonhosted.org/packages/61/d8/b0efd8f36eb1d14bf6f98612c920ffb26e4b8e17900033a5dd837cce23cc/python_hangman-2.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c44393d09d0e15d19099c9a59985d5d6", "sha256": "6c5b6178741be4a388b9ca990a4f34c8901747a201acaea6c6ebcc93dae8ce24" }, "downloads": -1, "filename": "python_hangman-2.2.0.tar.gz", "has_sig": false, "md5_digest": "c44393d09d0e15d19099c9a59985d5d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24262, "upload_time": "2015-12-18T08:39:10", "url": "https://files.pythonhosted.org/packages/a4/23/18c4d3cbcbf49926d47869c21f9c36bafedbf72a5e39ac7c99d46e98bcb7/python_hangman-2.2.0.tar.gz" } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "fc730557978208e180e80a3ebd3cac8b", "sha256": "9f8f0f0d6d80bbb230a6866ee0da3a4c1ed6c04652c7fcb983d8ad54c7bcf033" }, "downloads": -1, "filename": "python_hangman-2.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fc730557978208e180e80a3ebd3cac8b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 39946, "upload_time": "2015-12-19T00:40:19", "url": "https://files.pythonhosted.org/packages/cb/f9/2a7e48449cc11f14428e763c9d9eafac85d5049655689d515fa0010b0d52/python_hangman-2.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "adff350a174fe45b876f4fea73ab9193", "sha256": "05f9b4fa0732204396f0566b7a2a501a360f25a1fa28a28bc0cc91cf1f21270a" }, "downloads": -1, "filename": "python_hangman-2.2.1.tar.gz", "has_sig": false, "md5_digest": "adff350a174fe45b876f4fea73ab9193", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24772, "upload_time": "2015-12-19T00:40:25", "url": "https://files.pythonhosted.org/packages/43/85/43d74aafeb4929f0c12f90a9027cc0cd42f93d3c224db8f773231a380f89/python_hangman-2.2.1.tar.gz" } ], "2.2.2": [ { "comment_text": "", "digests": { "md5": "fc1561bdb3375f2ec15681deab1f7a18", "sha256": "2faf89fe9d18372fbf5756c7f7bfd483290614abaab4f67fc1ef4e610ee57a44" }, "downloads": -1, "filename": "python_hangman-2.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fc1561bdb3375f2ec15681deab1f7a18", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19681, "upload_time": "2015-12-19T02:18:53", "url": "https://files.pythonhosted.org/packages/36/33/fda031312c9dbf14ecf41ff7a626fb811d6e2c3c81b720c31c541b90f96e/python_hangman-2.2.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "49d1e08be361210c3318537aa8fbc749", "sha256": "8577f82cdad4f050cf2c0d83f171ab71ec02018e684be1e34e9559898a593618" }, "downloads": -1, "filename": "python_hangman-2.2.2.tar.gz", "has_sig": false, "md5_digest": "49d1e08be361210c3318537aa8fbc749", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24667, "upload_time": "2015-12-19T02:19:00", "url": "https://files.pythonhosted.org/packages/f8/36/a27d3a6b9a3be9bc1494207dbafcd2d06d108b2eae17fd81a87d0808d1b5/python_hangman-2.2.2.tar.gz" } ], "2.2.3": [ { "comment_text": "", "digests": { "md5": "b01b8344875d70d39b4d8a844439a80c", "sha256": "3577561c04f80a8fdc50b0c2070072dc343a72613d4f74e3a07a6279ca7a02a6" }, "downloads": -1, "filename": "python_hangman-2.2.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b01b8344875d70d39b4d8a844439a80c", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 14712, "upload_time": "2015-12-28T10:10:16", "url": "https://files.pythonhosted.org/packages/a8/30/13952e304d9cebb853039643a357a691aa2c250e1f228691317f7b35db77/python_hangman-2.2.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8e55303f67960551116299af903ee143", "sha256": "c61a15769f6224fdf3089974183d5ef03370b25d224d41f61f50f6975fe343e3" }, "downloads": -1, "filename": "python_hangman-2.2.3.tar.gz", "has_sig": false, "md5_digest": "8e55303f67960551116299af903ee143", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24548, "upload_time": "2015-12-28T10:09:59", "url": "https://files.pythonhosted.org/packages/e9/a4/46c566936d8c3d7b1503e0b8eacd0c1b2ca9d20e15a043c1053bae3c924a/python_hangman-2.2.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "b01b8344875d70d39b4d8a844439a80c", "sha256": "3577561c04f80a8fdc50b0c2070072dc343a72613d4f74e3a07a6279ca7a02a6" }, "downloads": -1, "filename": "python_hangman-2.2.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b01b8344875d70d39b4d8a844439a80c", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 14712, "upload_time": "2015-12-28T10:10:16", "url": "https://files.pythonhosted.org/packages/a8/30/13952e304d9cebb853039643a357a691aa2c250e1f228691317f7b35db77/python_hangman-2.2.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8e55303f67960551116299af903ee143", "sha256": "c61a15769f6224fdf3089974183d5ef03370b25d224d41f61f50f6975fe343e3" }, "downloads": -1, "filename": "python_hangman-2.2.3.tar.gz", "has_sig": false, "md5_digest": "8e55303f67960551116299af903ee143", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24548, "upload_time": "2015-12-28T10:09:59", "url": "https://files.pythonhosted.org/packages/e9/a4/46c566936d8c3d7b1503e0b8eacd0c1b2ca9d20e15a043c1053bae3c924a/python_hangman-2.2.3.tar.gz" } ] }