{ "info": { "author": "Gabor Szathmari", "author_email": "gszathmari@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Other Audience", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 2 :: Only", "Topic :: Security" ], "description": "########\nmunchkin\n########\n\nWordlist generator based on password cards\n\n.. image:: https://img.shields.io/travis/gszathmari/munchkin.svg\n :target: https://travis-ci.org/gszathmari/munchkin\n :alt: Travis CI\n\n.. image:: https://img.shields.io/codacy/3f42d3ee8060406d81e77dc6274bb671.svg\n :target: https://www.codacy.com/app/gszathmari/munchkin\n :alt: Codacy\n\n.. image:: https://www.quantifiedcode.com/api/v1/project/c42903be20d644809c9c87c9b8c6b81f/badge.svg\n :target: https://www.quantifiedcode.com/app/project/c42903be20d644809c9c87c9b8c6b81f\n :alt: QuantifiedCode\n\n.. image:: https://img.shields.io/pypi/dm/munchkin.svg\n :target: https://pypi.python.org/pypi/munchkin\n :alt: PyPI\n\n.. image:: https://img.shields.io/requires/github/gszathmari/munchkin.svg\n :target: https://requires.io/github/gszathmari/munchkin/requirements/?branch=master\n :alt: Requirements Status\n\n.. image:: https://img.shields.io/pypi/pyversions/munchkin.svg\n :alt: Python Versions\n\nWhat is a password card?\n========================\n\nPassword (aka. grid) card is a physical card that allows you to memorize your\npasswords easier.\n\n.. image:: https://raw.githubusercontent.com/gszathmari/munchkin/master/docs/images/password_card.png\n :alt: Password Card\n\nThe card contains a block of random alphanumeric characters. You just need to\nchoose and memorize a row, a column and a direction to pick a password from the\ncard.\n\nSecurity\n--------\n\nPasswords cards heavily rely on physical security. The card should be kept in\nyour wallet or pocket, far away from watchful eyes around you.\n\nIn case the card is lost or recorded with a camera (e.g. CCTV), your password\nis compromised therefore it should be changed immediately.\n\nFeatures\n========\n\nMunchkin can generate wordlists from compromised password cards.\n\nThis utility generates potential passwords and dumps them onto the screen or\ninto a text file. The list of passwords can be used for brute-force attacks.\n\nSupported Strategies\n--------------------\n\nPasswords from a password card can be chosen by the user based on different\nstrategies. He or she might read passwords from left to right, top to down or\ndiagonally.\n\nMunchkin can generate passwords based on the most common card reading\nstrategies. The followings are samples only.\n\nLeft to Right\n^^^^^^^^^^^^^\n\n.. image:: https://raw.githubusercontent.com/gszathmari/munchkin/master/docs/images/left-to-right.png\n :alt: Left to Right\n\nTop Down\n^^^^^^^^\n\n.. image:: https://raw.githubusercontent.com/gszathmari/munchkin/master/docs/images/top-down.png\n :alt: Top Down\n\nRefer to the documentation for a comprehensive list of `password generating strategies`_.\n\n.. _password generating strategies: https://github.com/gszathmari/munchkin/blob/master/docs/strategies.rst\n\nSupported Cards\n---------------\n\n* Cards from http://passwordcard.org\n* Any user-supplied custom card\n\nInstalling Munchkin\n===================\n\nThe latest package is available on `PyPI`_ ::\n\n $ pip install munchkin\n\n.. _PyPI: https://pypi.python.org/pypi/munchkin\n\nRequirements\n------------\n\nThis utility only runs on Python *2.6.x* and *2.7.x*\n\nUsage Instructions\n==================\n\nThe following section explains the basic usage of Munchkin. You can also use\nthe ``-h`` switch for getting more information on the individual features.\n\nOperation Modes\n---------------\n\nThere are two operation modes available. The first one generates cards similar\nto the ones from http://passwordcard.org, and the second allows to bring your\nown password cards.\n\npasswordcard.org Cards\n^^^^^^^^^^^^^^^^^^^^^^\n\nUse the ``pcard`` selector to generate passwords from passwordcard.org cards ::\n\n $ munchkin pcard -h\n\nThis selector recognises the following options:\n\n -s str, --seed str card number (e.g. *7eb3fbfa560d1d1e*)\n --symbols include symbols\n --digits incude digits\n\nCustom Cards\n^^^^^^^^^^^^\n\nThe ``custom`` selector allows to supply password cards by pasting them as a\nblock of text ::\n\n $ munchkin custom -h\n\nThis selector does not require any special options.\n\nSettings\n--------\n\nThe following switches are recognized for both card types\n\nPassword Length\n^^^^^^^^^^^^^^^\n\nChoose the minimum and maximum length of passwords to generate:\n\n --minlen num minimum password length (*default: 6*)\n --maxlen num maximum password length (*default: 12*)\n\nRead Strategies\n^^^^^^^^^^^^^^^\n\nSelect one or more strategies to generate passwords (refer\nto `Supported Strategies`_ section for further explanation)\n\n -l, --left-to-right Left to right\n -r, --right-to-left Right to left\n -t, --top-down Top left corner to bottom right\n -b, --bottom-up Bottom right corner to top left\n\nFile Output\n^^^^^^^^^^^\n\nDump passwords to a file instead of the terminal:\n\n -f name, --file name Dump passwords to file\n\nExamples\n--------\n\nGenerate 6-8 digit passwords from a password card generated with seed the\ninitial seed of *7eb3fbfa560d1d1e* ::\n\n $ munchkin pcard -s 7eb3fbfa560d1d1e -l\n\nSupply your own password card and generate passwords with multiple read\nstrategies ::\n\n $ munchkin custom -l -r -t -b\n\nLinks\n=====\n\n* `Source code on GitHub`_\n* `Package on PyPI`_\n\n.. _Source code on GitHub: https://github.com/gszathmari/munchkin\n.. _Package on PyPI: https://pypi.python.org/pypi/munchkin\n\nContributors\n============\n\n* Gabor Szathmari - `@gszathmari`_\n\n.. _@gszathmari: https://www.twitter.com/gszathmari\n\nCredits\n=======\n\n* Python port of passwordcard.org algorithm: `olasd/passwordcard`_\n\n.. _olasd/passwordcard: https://github.com/olasd/passwordcard", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/gszathmari/munchkin", "keywords": "security password", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "munchkin", "package_url": "https://pypi.org/project/munchkin/", "platform": "Linux", "project_url": "https://pypi.org/project/munchkin/", "project_urls": { "Homepage": "https://github.com/gszathmari/munchkin" }, "release_url": "https://pypi.org/project/munchkin/0.3.2/", "requires_dist": [ "numpy (==1.9.3)", "colorama" ], "requires_python": "", "summary": "Wordlist generator based on password cards", "version": "0.3.2" }, "last_serial": 2094412, "releases": { "0.1.0": [], "0.1.1": [ { "comment_text": "", "digests": { "md5": "8803bd2cd3fc819d9f46043e65ef2e90", "sha256": "6b5f67c8902671833f308a03752a84902651b68b8e686b402d4b805976c22ef6" }, "downloads": -1, "filename": "munchkin-0.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8803bd2cd3fc819d9f46043e65ef2e90", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 23538, "upload_time": "2015-09-18T12:06:07", "url": "https://files.pythonhosted.org/packages/39/77/63020e9068f4b17702d3a41d3bfc17ac85b7961d58b58c5f547aa94f933b/munchkin-0.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "84cde3d3827a53bcb7a455282700d0ed", "sha256": "bd7adb4ec3a4ba2dd4fa6c89033ead5e21fbd0a7f5008cdf6952d83d2c267fc3" }, "downloads": -1, "filename": "munchkin-0.1.1.tar.gz", "has_sig": false, "md5_digest": "84cde3d3827a53bcb7a455282700d0ed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15657, "upload_time": "2015-09-18T12:06:11", "url": "https://files.pythonhosted.org/packages/94/78/86bf16d4baa7a2dcfc451c13744547c836d93096766ba7ec578b039567ff/munchkin-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "cba79a1187b8b314f0c0ee216b683d76", "sha256": "78c369c8d7fc970a3eabc2d2ba505887286ba9188adc1f24c60932e969dedbb0" }, "downloads": -1, "filename": "munchkin-0.1.2-py2-none-any.whl", "has_sig": false, "md5_digest": "cba79a1187b8b314f0c0ee216b683d76", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 23885, "upload_time": "2015-09-18T14:04:43", "url": "https://files.pythonhosted.org/packages/50/30/af53abb585836c4295417049558bc232af941b92cc0e9b83a483a9216229/munchkin-0.1.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bf35ee0cfb7d29b9464f7c5df79c979f", "sha256": "3d26627ac6d134a22547d1fb7ced7b16f61aa951449409007e8362729a3be30c" }, "downloads": -1, "filename": "munchkin-0.1.2.tar.gz", "has_sig": false, "md5_digest": "bf35ee0cfb7d29b9464f7c5df79c979f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15994, "upload_time": "2015-09-18T14:04:49", "url": "https://files.pythonhosted.org/packages/3c/39/00543f6dbb94a3a0d84204a3c9024803e10c832aeb7f5b7670d7c6928791/munchkin-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "2f833e6ecd608d7c4e7935e51004d36a", "sha256": "b1e3e7b8c458a959284a64a43ddfff8adfd653f44efe93cea5b33aa8ef929ec4" }, "downloads": -1, "filename": "munchkin-0.1.3-py2-none-any.whl", "has_sig": false, "md5_digest": "2f833e6ecd608d7c4e7935e51004d36a", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 24079, "upload_time": "2015-09-18T14:23:36", "url": "https://files.pythonhosted.org/packages/54/b3/8709390665e85028faf1fda72fc11cd0938d384a2a65073eb445fa928c3d/munchkin-0.1.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d18a7d47738ef9a33171f5135c291ec0", "sha256": "7ab647661de60688106cfcf83dc756f1b176153f4fb7d1b1d46dfdf4c8f0df5f" }, "downloads": -1, "filename": "munchkin-0.1.3.tar.gz", "has_sig": false, "md5_digest": "d18a7d47738ef9a33171f5135c291ec0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16112, "upload_time": "2015-09-18T14:23:41", "url": "https://files.pythonhosted.org/packages/52/f5/c96f93c6e03bc094b757e0d9870a42e916f213edd6494d0353c35741fdd7/munchkin-0.1.3.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "068365c613266ff8c5e6d0608a163b13", "sha256": "ea35bec8f8fe7498682d1892adb36716da48b1543fbe1478ea26188241552f4b" }, "downloads": -1, "filename": "munchkin-0.2.0-py2-none-any.whl", "has_sig": false, "md5_digest": "068365c613266ff8c5e6d0608a163b13", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 25294, "upload_time": "2015-09-21T23:02:49", "url": "https://files.pythonhosted.org/packages/4e/77/a614b00d6e9c6f7151c40f1e041fec83c4a30e5984ab35c6a6d840e7648e/munchkin-0.2.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2213f22c9d79a2314a8eb77d1909bbd8", "sha256": "e4ccb82342c6ffb5ce1d6c8a4a9f13cb88a10fb692b10c08cfdb79488ae4ebbf" }, "downloads": -1, "filename": "munchkin-0.2.0.tar.gz", "has_sig": false, "md5_digest": "2213f22c9d79a2314a8eb77d1909bbd8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17479, "upload_time": "2015-09-21T23:03:09", "url": "https://files.pythonhosted.org/packages/38/da/1fd3b0de6d3a199904c54467ff0f1a9a5a85e21f23786199e98e5af4f153/munchkin-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "8ef5411c99cfc1cd765795b885e3f268", "sha256": "25b6e34f07d137439458461e67603ce0ec30d704fe9ec4a90fcad2159c2cb9ef" }, "downloads": -1, "filename": "munchkin-0.2.1-py2-none-any.whl", "has_sig": false, "md5_digest": "8ef5411c99cfc1cd765795b885e3f268", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 24812, "upload_time": "2015-09-21T23:53:51", "url": "https://files.pythonhosted.org/packages/50/0a/381007571abf7c49c13b2237c988502942b159fb56006c07cb40e2cc9f94/munchkin-0.2.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "61faf34e36586c21e5cc69151b0ab22a", "sha256": "fd8647d9f83ca5277324e9bd9de51d826bdd8b19d151080c7ad804a02c63767d" }, "downloads": -1, "filename": "munchkin-0.2.1.tar.gz", "has_sig": false, "md5_digest": "61faf34e36586c21e5cc69151b0ab22a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17049, "upload_time": "2015-09-21T23:53:55", "url": "https://files.pythonhosted.org/packages/99/11/de2b20c3480cc9ce207958cfdb0c44dde8411326656415231672aaf12bfb/munchkin-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "fe46b0f3167c0c1d7f38b3e9b24b39d0", "sha256": "e9851bb915eb1c234dafcef3b718ba920f250d9bcdd36d6af8c6c38fa0ae27f0" }, "downloads": -1, "filename": "munchkin-0.2.2-py2-none-any.whl", "has_sig": false, "md5_digest": "fe46b0f3167c0c1d7f38b3e9b24b39d0", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 25370, "upload_time": "2015-09-22T09:30:21", "url": "https://files.pythonhosted.org/packages/23/3d/26c58005d0d636bbe91fbf0375e703b76dfa6526ffe2ef113b8cb9111a49/munchkin-0.2.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4bba826d9d1b64f81976ef05462627da", "sha256": "cc0f46bc7bb43f8981c25844c3900a554ca319c53de4d326c3840b024eb45b16" }, "downloads": -1, "filename": "munchkin-0.2.2.tar.gz", "has_sig": false, "md5_digest": "4bba826d9d1b64f81976ef05462627da", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17617, "upload_time": "2015-09-22T09:30:27", "url": "https://files.pythonhosted.org/packages/89/5a/ae48e4678641e6839e0eaf1eac3cb968dc281c8075148cb4e2d86d8d2b4a/munchkin-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "3213516f0dce6c09838f1748453ff53c", "sha256": "114c06906b0f18a7d5437ad7d69e2edf1994b6086e170bfa6f52a988a0cb3bc8" }, "downloads": -1, "filename": "munchkin-0.2.3-py2-none-any.whl", "has_sig": false, "md5_digest": "3213516f0dce6c09838f1748453ff53c", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 25403, "upload_time": "2015-09-22T09:44:43", "url": "https://files.pythonhosted.org/packages/91/c8/6970333eb0fb5f419b5629dd5e9df857646f2260ecebfa81c3051c4aeb89/munchkin-0.2.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0103edce79188c0474a0f10d7a219217", "sha256": "c447e24cde9653c275e36f919ca504965b6e061ea1dd09c55b786206ffea9479" }, "downloads": -1, "filename": "munchkin-0.2.3.tar.gz", "has_sig": false, "md5_digest": "0103edce79188c0474a0f10d7a219217", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17671, "upload_time": "2015-09-22T09:44:47", "url": "https://files.pythonhosted.org/packages/e0/a5/dd4ace4e22714fe2cbc875c4860aa83ec12aefdcb6a6e36c4eb0a53ecd22/munchkin-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "39f4c9508407ec7d6c8a899094048509", "sha256": "ead5542abce90e92714e50d24607e673146365692af2ef1274aee86e6f2d6915" }, "downloads": -1, "filename": "munchkin-0.2.4-py2-none-any.whl", "has_sig": false, "md5_digest": "39f4c9508407ec7d6c8a899094048509", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 26115, "upload_time": "2015-09-23T13:12:35", "url": "https://files.pythonhosted.org/packages/69/62/9393c900d3a7c2c730a7ed1f4cb0d65e36c9d31d0f22f67f52d3e82f306c/munchkin-0.2.4-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6223b0fccdb1d195b04953f3767907fa", "sha256": "0b0139c06cd841764dd0ca0ddbcc362ad399a3c2a4ab72fc85d2afa9dc9a2103" }, "downloads": -1, "filename": "munchkin-0.2.4.tar.gz", "has_sig": false, "md5_digest": "6223b0fccdb1d195b04953f3767907fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18035, "upload_time": "2015-09-23T13:12:39", "url": "https://files.pythonhosted.org/packages/fa/6b/2f8b8933b71798a79970a1236ed914d7b6922cbe1cbc926b5a973508a74e/munchkin-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "e050fac5be7c31917a9ba41774e7649f", "sha256": "bf9fc3d29b39286940df5afb90635be5493664c31b541c5691d2979f276c670e" }, "downloads": -1, "filename": "munchkin-0.2.5-py2-none-any.whl", "has_sig": false, "md5_digest": "e050fac5be7c31917a9ba41774e7649f", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 26377, "upload_time": "2015-09-23T13:49:06", "url": "https://files.pythonhosted.org/packages/22/b4/8e3c89713c7b744c623d0620d2763411abbd2828ff4790359d27565809bb/munchkin-0.2.5-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b194dd316a5c6d9b424d9251a9a3baba", "sha256": "c455e62c9e001f2e11518454c6d5ae43c49fef569c8ea980de7a9e35391cfb44" }, "downloads": -1, "filename": "munchkin-0.2.5.tar.gz", "has_sig": false, "md5_digest": "b194dd316a5c6d9b424d9251a9a3baba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18223, "upload_time": "2015-09-23T13:49:11", "url": "https://files.pythonhosted.org/packages/d7/34/1178607173f67849a1244f745036e62888645c0350340cba18cfb63c6e7c/munchkin-0.2.5.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "8fb3883deeda398ebe387f226b65e90a", "sha256": "3564597209892de450c670c420618200873e5c16f13a9299778408542771d9ef" }, "downloads": -1, "filename": "munchkin-0.2.6-py2-none-any.whl", "has_sig": false, "md5_digest": "8fb3883deeda398ebe387f226b65e90a", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 28421, "upload_time": "2015-09-29T11:01:11", "url": "https://files.pythonhosted.org/packages/f2/44/6477dddcc358e2dd116e19e138009e1b762a02759fcfb81f250326387fff/munchkin-0.2.6-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "989d68a5f73159d8a357bf1e1b893dcc", "sha256": "82b517845e711b45b6e603064fc0c53ca8f32619e702388a9c630432b82dc53d" }, "downloads": -1, "filename": "munchkin-0.2.6.tar.gz", "has_sig": false, "md5_digest": "989d68a5f73159d8a357bf1e1b893dcc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19597, "upload_time": "2015-09-29T11:07:03", "url": "https://files.pythonhosted.org/packages/ee/9b/1d5f5410af543f9bf00dad03a3ff26c7a7fc17ae06395832f64a7f6cfd8e/munchkin-0.2.6.tar.gz" } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "440bde61e30a1f524a06f0a42338b633", "sha256": "b2bf1d40e75164ca428851e3e3d573a11bf251c7eb2e223523f113e1287a9f35" }, "downloads": -1, "filename": "munchkin-0.2.7-py2-none-any.whl", "has_sig": false, "md5_digest": "440bde61e30a1f524a06f0a42338b633", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 29303, "upload_time": "2015-09-30T15:34:20", "url": "https://files.pythonhosted.org/packages/d2/40/c68a35c1153afee5ce53cfabb439d32bb5ee541aceb399d25c56068fab6f/munchkin-0.2.7-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "07cd526d56cfd29dca582e7e20840680", "sha256": "4c2951502543981e15324a7d147820da694990127c80d8570b80b913880f63d9" }, "downloads": -1, "filename": "munchkin-0.2.7.tar.gz", "has_sig": false, "md5_digest": "07cd526d56cfd29dca582e7e20840680", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19833, "upload_time": "2015-09-30T15:34:23", "url": "https://files.pythonhosted.org/packages/5b/56/a23288005a0360df8321fdd73f5753e485f8992bf2b3edc76c24d561d1fb/munchkin-0.2.7.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "25b6b0624a854633bdf1821f6f2e8f10", "sha256": "9c526870746f89fbd375a5319957065625b8df5f0d22793006b0f6c0c2527b2c" }, "downloads": -1, "filename": "munchkin-0.3.1-py2-none-any.whl", "has_sig": false, "md5_digest": "25b6b0624a854633bdf1821f6f2e8f10", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 37564, "upload_time": "2015-10-05T13:45:29", "url": "https://files.pythonhosted.org/packages/11/b3/d15cc2cf62d84d5efa950e7041f8802f5fc3bc024571493f7ca17bc5cc16/munchkin-0.3.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "21d29c2e71ee1612b37b4a188bf4d138", "sha256": "86702dd5fe91196c79583273ae33f04ae848c7f66de377bd7d2d2ab92ef3ce09" }, "downloads": -1, "filename": "munchkin-0.3.1.tar.gz", "has_sig": false, "md5_digest": "21d29c2e71ee1612b37b4a188bf4d138", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22070, "upload_time": "2015-10-05T13:45:32", "url": "https://files.pythonhosted.org/packages/11/4c/3e2998f1452e85aad10aa20b0961830aa37615e809ffb73abe9d36c85026/munchkin-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "709afa196f00ee13283b0b6b6af1b1c7", "sha256": "52483463231c5b5cfd49377b22b78ee63d68c971c8c038af59b0576de5e9129b" }, "downloads": -1, "filename": "munchkin-0.3.2-py2-none-any.whl", "has_sig": false, "md5_digest": "709afa196f00ee13283b0b6b6af1b1c7", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 37551, "upload_time": "2016-05-02T07:47:58", "url": "https://files.pythonhosted.org/packages/da/97/8ed973e0ca902b7c52e42a83c9541fd0c9d00c8416ef079d9d79d023775c/munchkin-0.3.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "be46b12dae30de0e5237752d17e72484", "sha256": "3922dfa872e55f536beb62aac612c217ddf136cd8480b8cac1e6542cb9266fb7" }, "downloads": -1, "filename": "munchkin-0.3.2.tar.gz", "has_sig": false, "md5_digest": "be46b12dae30de0e5237752d17e72484", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22080, "upload_time": "2016-05-02T07:48:17", "url": "https://files.pythonhosted.org/packages/f0/f6/57494b08dd7d1f779e1f343f5c60a5614a368fc551e31056c9b61fd5b717/munchkin-0.3.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "709afa196f00ee13283b0b6b6af1b1c7", "sha256": "52483463231c5b5cfd49377b22b78ee63d68c971c8c038af59b0576de5e9129b" }, "downloads": -1, "filename": "munchkin-0.3.2-py2-none-any.whl", "has_sig": false, "md5_digest": "709afa196f00ee13283b0b6b6af1b1c7", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 37551, "upload_time": "2016-05-02T07:47:58", "url": "https://files.pythonhosted.org/packages/da/97/8ed973e0ca902b7c52e42a83c9541fd0c9d00c8416ef079d9d79d023775c/munchkin-0.3.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "be46b12dae30de0e5237752d17e72484", "sha256": "3922dfa872e55f536beb62aac612c217ddf136cd8480b8cac1e6542cb9266fb7" }, "downloads": -1, "filename": "munchkin-0.3.2.tar.gz", "has_sig": false, "md5_digest": "be46b12dae30de0e5237752d17e72484", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22080, "upload_time": "2016-05-02T07:48:17", "url": "https://files.pythonhosted.org/packages/f0/f6/57494b08dd7d1f779e1f343f5c60a5614a368fc551e31056c9b61fd5b717/munchkin-0.3.2.tar.gz" } ] }