{ "info": { "author": "YakDriver", "author_email": "projects@plus3it.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX :: Linux", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Utilities" ], "description": "======\nPyppyn\n======\n\n.. image:: https://img.shields.io/github/license/plus3it/pyppyn.svg\n :target: ./LICENSE\n :alt: License\n.. image:: https://travis-ci.org/plus3it/pyppyn.svg?branch=master\n :target: http://travis-ci.org/plus3it/pyppyn\n :alt: Build Status\n.. image:: https://img.shields.io/pypi/pyversions/pyppyn.svg\n :target: https://pypi.python.org/pypi/pyppyn\n :alt: Python Version Compatibility\n.. image:: https://img.shields.io/pypi/v/pyppyn.svg\n :target: https://pypi.python.org/pypi/pyppyn\n :alt: Version\n\nPyppyn helps you dynamically read setup configurations and load dependencies.\n\nSince ``pip`` is excellent at reading setup configurations and loading dependencies, why Pyppyn?\nIf you need programmatic access to dependency information, for\nexample, in dynamically creating standalone\napplications using `GravityBee `_ and `PyInstaller `_, Pyppyn can help you out.\n\nPyppyn can be used in scripts or using the CLI. Either way, it can be\ninstalled easily.\n\n.. code-block:: bash\n\n $ pip install pyppyn\n\nCLI\n===\n\n``Pyppyn`` will display help in typical fashion.\n\n.. code-block:: bash\n\n $ pyppyn --help\n\nExample\n=======\n\nTo parse the included test mini Python package (tests/minipippy),\nwith a setup.cfg and setup.py file, and install the required\ndependencies, you can use this command. This allows you to install\ndependencies without installing the package.\n\n.. code-block:: bash\n\n $ pyppyn --setup-path tests/minipippy --platform linux -v -a\n Pyppyn CLI, 0.3.5\n [Pyppyn] Platform: linux\n [Pyppyn] Setup path: tests/minipippy\n [Pyppyn] Reading configuration of tests/minipippy\n [Pyppyn] Building wheel from tests/minipippy\n [...]\n [Pyppyn] Extracting wheel (unzipping)\n [Pyppyn] Wheel archive found: ./minipippy-4.8.2-py2.py3-none-any.whl\n [Pyppyn] Unzipping: ./minipippy-4.8.2-py2.py3-none-any.whl\n [Pyppyn] Going through wheel directories\n [Pyppyn] Looking at wheel top level\n [Pyppyn] Reading names of console scripts\n [Pyppyn] Reading wheel metadata\n [Pyppyn] Cleaning up wheel\n [Pyppyn] This Python: 3.6\n [Pyppyn] Version from tests/minipippy : 4.8.2\n [Pyppyn] Unsupported marker [ six ]: platform_system == \"linux\" and python_version > \"3.3\"\n [Pyppyn] Install Requires:\n [Pyppyn] \tGenerally required: ['backoff', 'click', 'pyyaml']\n [Pyppyn] \tFor this OS: []\n [Pyppyn] \tFor this Python version: []\n [Pyppyn] \tUnparsed markers: ['six']\n [Pyppyn] \tOthers listed by not required (e.g., wrong platform): ['defusedxml', 'pypiwin32']\n [Pyppyn] Installing package: backoff\n [Pyppyn] Imported module: backoff\n [Pyppyn] Installing package: click\n [Pyppyn] Imported module: click\n [Pyppyn] Installing package: pyyaml\n [Pyppyn] Imported module: yaml\n\n\nFrom Python\n===========\n\nThis is a sample usage of Pyppyn from a Python script.\n\n.. code-block:: python\n\n import pyppyn\n\n # Create an instance\n p = pyppyn.ConfigRep(setup_path=\"tests/minipippy\")\n\n # Load config, install dependencies and import a module from the package\n p.process_config()\n\n print(\"Package requires:\", p.get_required())\n\nContribute\n==========\n\n``Pyppyn`` is hosted on `GitHub `_ and is an open source project that welcomes contributions of all kinds from the community.\n\nFor more information about contributing, see `the contributor guidelines `_.\n\nNamesake\n========\n\nThis module is named in\nhonor of Pippin, a companion, friend, Bichon Frise-Shih Tzu mix. He\npassed away on March 30, 2018 at the age of 12 after a battle with\ndiabetes, blindness, deafness, and loss of smell. Pleasant to the\nend, he was a great, great dog.\n\n\nCHANGE LOG\n==========\n\n0.3.10 - 2019.02.05\n-------------------\n* [ENHANCEMENT] Perform work in '.pyppyn' directory.\n\n0.3.9 - 2019.01.29\n------------------\n* [ENHANCEMENT] Minor cleanup.\n* [ENHANCEMENT] Transfer to Plus3IT.\n\n0.3.8 - 2019.01.24\n------------------\n* [ENHANCEMENT] Restructure Travis CI linting, testing, deploying so\n deploy only happens when other stages complete successfully.\n* [ENHANCEMENT] Improve speed of MacOS builds significantly.\n\n0.3.7 - 2019.01.23\n------------------\n* [ENHANCEMENT] Minor change to Travis CI, remove AppVeyor.\n\n0.3.6 - 2019.01.23\n------------------\n* [ENHANCEMENT] Replace print with log.\n* [ENHANCEMENT] Improve compatibility across Windows, MacOS,\n Linux; add tests to Travis CI.\n\n0.3.5 - 2019.01.05\n------------------\n* [ENHANCEMENT] Fix flake8, pylint issues, add pipenv Pipfile, fix\n compatibility with Python 3.7.\n\n0.3.4 - 2018.06.20\n------------------\n* [FIX] Determine available module(s) from a package\n was not working on Windows. This functionality is not\n required by GravityBee so it was removed to allow\n everything to work smoothly on Windows.\n* [ENHANCEMENT] Clean up code, comments.\n\n0.3.3 - 2018.05.07\n------------------\n* [ENHANCEMENT] Integrate with `Satsuki `_ to simplify the release process.\n* [ENHANCEMENT] Integrate with `GravityBee `_ to create standalone\n executables for platforms.\n\n0.3.2 - 2018.04.26\n------------------\n* [FIX] Minor tweak to way that work directories are created to\n avoid namespace collisions using UUIDs.\n\n0.3.1 - 2018.04.24\n------------------\n* [ENHANCEMENT] Add convenience methods for accessing configuration data.\n* [FIX] Improve state handling.\n\n0.3.0 - 2018.04.23\n------------------\n* [ENHANCEMENT] Now provides support for packages with setup.py\n and/or setup.cfg configuations.\n\n0.2.3 - 2018.04.16\n------------------\n* [ENHANCEMENT] Improved usability by maintaining state of instances\n of ConfigRep, so methods can be called and object will know whether\n it is in the correct state to respond. It will call appropriate\n prerequisite methods if not.\n* [ENHANCEMENT] Provide a convenience method to give all required\n packages in one list.\n\n0.2.2 - 2018.04.13\n------------------\n* [ENHANCEMENT] Changed format of readme and changelog to RST, and\n simplified setup.py as a result.\n\n0.2.1 - 2018.04.13\n------------------\nProvides these capabilities (in limited form):\n\n* [ENHANCEMENT] Extract package dependencies from setup.cfg file.\n* [ENHANCEMENT] Determine which dependencies will be needed on the\n current os/python version.\n* [ENHANCEMENT] Find a module associated with a package.\n* [ENHANCEMENT] Install (and import) dependencies.\n\n0.1.0 - 2018.04.10\n------------------\n* Initial release!\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/plus3it/pyppyn", "keywords": "", "license": "Apache Software License 2.0", "maintainer": "", "maintainer_email": "", "name": "pyppyn", "package_url": "https://pypi.org/project/pyppyn/", "platform": "Linux", "project_url": "https://pypi.org/project/pyppyn/", "project_urls": { "Homepage": "https://github.com/plus3it/pyppyn" }, "release_url": "https://pypi.org/project/pyppyn/0.3.11/", "requires_dist": [ "setuptools (==40.7.3)", "click (==7.0)", "wheel (==0.32.3)" ], "requires_python": "", "summary": "Python package to dynamically read setup configurations and load dependencies.", "version": "0.3.11" }, "last_serial": 5234099, "releases": { "0.1.dev0": [ { "comment_text": "", "digests": { "md5": "ea1427e03c14de9835a47290b4cdb221", "sha256": "ee6f04f7af21c7a16f37d519d54108777a9997c10ea9b56b40885c48119de583" }, "downloads": -1, "filename": "pyppyn-0.1.dev0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ea1427e03c14de9835a47290b4cdb221", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4764, "upload_time": "2018-04-10T14:53:22", "url": "https://files.pythonhosted.org/packages/a6/3a/b2cec47cc71cbbdc59a5a97d82d221fb3c605d978bab780ac2af09e90a83/pyppyn-0.1.dev0-py2.py3-none-any.whl" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "42def0f6da001ce3dce67bc0dde98a17", "sha256": "e7f18385de31d3767d24bb4d51f4b1108928236bde5dbf95160a6fe631ec3338" }, "downloads": -1, "filename": "pyppyn-0.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "42def0f6da001ce3dce67bc0dde98a17", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6156, "upload_time": "2018-04-13T19:23:05", "url": "https://files.pythonhosted.org/packages/3e/ac/69ee4b709b7afff350f1e1d02ca0cae8419e6f213d7d3d054b95120d07e3/pyppyn-0.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cb2a6c279ddfc6d21b8cefc118d105ab", "sha256": "10c2227fd38040281de1c0cbc16274f16ec60f176f23d8be5e9e2427cc7d3b85" }, "downloads": -1, "filename": "pyppyn-0.2.1.tar.gz", "has_sig": false, "md5_digest": "cb2a6c279ddfc6d21b8cefc118d105ab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11399, "upload_time": "2018-04-13T19:23:06", "url": "https://files.pythonhosted.org/packages/c7/e1/842c805d17825171d728145b3c45663729e32bf0c55dd673a73bfd63eb28/pyppyn-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "bf9ec4bdf73032e823a4033d77e432ca", "sha256": "d9dbeb8ecf5242644244bccdecf8a8a8144e71166fdad93e5361010699a18985" }, "downloads": -1, "filename": "pyppyn-0.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bf9ec4bdf73032e823a4033d77e432ca", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 7198, "upload_time": "2018-04-14T01:27:53", "url": "https://files.pythonhosted.org/packages/e8/39/7074546895f38bc266dca6f9d6e326fefce05eb98aa1cefb486bd6942c04/pyppyn-0.2.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e5f8ae7ab2edb9b22d65a84b83076bf6", "sha256": "fe4bba5d34952c115cee245e69e67d023337ca3ca8b67e7a441a0a623ee21ce1" }, "downloads": -1, "filename": "pyppyn-0.2.2.tar.gz", "has_sig": false, "md5_digest": "e5f8ae7ab2edb9b22d65a84b83076bf6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13024, "upload_time": "2018-04-14T01:27:54", "url": "https://files.pythonhosted.org/packages/c1/97/18706312a1e43c8aea75ba273496f383a864a12b58677afe4fd485f9a8c5/pyppyn-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "ceae23143e807eb1a743f24782f41f0b", "sha256": "684428d03027a0e098723db4133869d2ff5f4be402de67d2cb73ad84a42b00ca" }, "downloads": -1, "filename": "pyppyn-0.2.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ceae23143e807eb1a743f24782f41f0b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 7464, "upload_time": "2018-04-17T13:34:59", "url": "https://files.pythonhosted.org/packages/c9/74/d5135131ba2e8ee6441e5ecd4e8909891c6f7de2ae288c720f2bed25fe4b/pyppyn-0.2.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2c6440ab17f6b55fabc6fbef8682219d", "sha256": "b8b8e9afed5a45ff87b14fdfc1d9c569e9157f698055e5d741bb00d8846ebe09" }, "downloads": -1, "filename": "pyppyn-0.2.3.tar.gz", "has_sig": false, "md5_digest": "2c6440ab17f6b55fabc6fbef8682219d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15965, "upload_time": "2018-04-17T13:35:00", "url": "https://files.pythonhosted.org/packages/64/4f/c4c401da36fee15b8b6b8e0e1b610a804a5797bbb2293e7f4b19ffe0b460/pyppyn-0.2.3.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "df9059648e25193b0cc92b55bde284db", "sha256": "0144db04edadc79d08d52f46c02118afbe66a97a2685181ef70c1fd0d8c1e620" }, "downloads": -1, "filename": "pyppyn-0.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "df9059648e25193b0cc92b55bde284db", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9036, "upload_time": "2018-04-24T00:11:25", "url": "https://files.pythonhosted.org/packages/28/47/a4c4f439a36fb016f4631e4bbbe95bfe633d12554d38690c19aaa22bff1a/pyppyn-0.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "71b3e53c4b2af8ea2c9fc0107b18cdb1", "sha256": "0444861ec03a6ab9e166b8786795935dd119fae7aaf95d8cd34c9cb177104d34" }, "downloads": -1, "filename": "pyppyn-0.3.0.tar.gz", "has_sig": false, "md5_digest": "71b3e53c4b2af8ea2c9fc0107b18cdb1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17790, "upload_time": "2018-04-24T00:11:26", "url": "https://files.pythonhosted.org/packages/b9/fd/474f1a50d6e630d5d105e3cdb9d8a4da25eb612243f8bf71d7b41d0f84a0/pyppyn-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "63f4e5476e777d8e710ea32818fd5655", "sha256": "b16ceaee3593716951b409fdcf8f6745cc6e4665832ae763a3a8c09cc604ab70" }, "downloads": -1, "filename": "pyppyn-0.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "63f4e5476e777d8e710ea32818fd5655", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9381, "upload_time": "2018-04-24T15:14:41", "url": "https://files.pythonhosted.org/packages/9b/f0/ff891bc60b8c59bc3a6086fec8580d1715d46e913fa4f37b7de4f67c0e7f/pyppyn-0.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ee2e18a14f3f3d8b9973448220fe43d5", "sha256": "4e32020abbe14f030b9f7c16f3584f299fe6c1215f5b27c2272b304517478185" }, "downloads": -1, "filename": "pyppyn-0.3.1.tar.gz", "has_sig": false, "md5_digest": "ee2e18a14f3f3d8b9973448220fe43d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18291, "upload_time": "2018-04-24T15:14:42", "url": "https://files.pythonhosted.org/packages/50/33/e77db47bf9d5a4ba7d7c0776b59c26922a1f87cda964362f035bd2afa6ff/pyppyn-0.3.1.tar.gz" } ], "0.3.10": [ { "comment_text": "", "digests": { "md5": "8b600a08edfa5bbe0005ddbff619d0e6", "sha256": "e4155b33c23506d624a96c03c350875ced1dd620bd1c3bc72c60669de4dd7300" }, "downloads": -1, "filename": "pyppyn-0.3.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8b600a08edfa5bbe0005ddbff619d0e6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19346, "upload_time": "2019-02-05T13:19:58", "url": "https://files.pythonhosted.org/packages/d2/08/6f7bfa113f5212ae6c6d4dc41464a5f8bd132a2ef66dc134bb87192320d0/pyppyn-0.3.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "777c08020f54b8de6328a0d4344f7a20", "sha256": "66a31b3495c0dedac36b4cd10464d2d66ee749241e0ff143cd2f90fa472f17bf" }, "downloads": -1, "filename": "pyppyn-0.3.10.tar.gz", "has_sig": false, "md5_digest": "777c08020f54b8de6328a0d4344f7a20", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24748, "upload_time": "2019-02-05T13:20:01", "url": "https://files.pythonhosted.org/packages/d9/02/dd780de56c90a3238f5cdb5552929b9ceed86092012c68e88949885c7f2f/pyppyn-0.3.10.tar.gz" } ], "0.3.11": [ { "comment_text": "", "digests": { "md5": "75ec31c3b01e3debd7e6e8a0fd35c962", "sha256": "bd8a2ae134992d74c330f0791c17a640311b2b1f66ed03f9e670297abb38fc4d" }, "downloads": -1, "filename": "pyppyn-0.3.11-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "75ec31c3b01e3debd7e6e8a0fd35c962", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19345, "upload_time": "2019-05-06T17:43:21", "url": "https://files.pythonhosted.org/packages/e5/76/c08f31ccd05795708fa4488c882cd558ba0794a5c5cf3036977f1198a07c/pyppyn-0.3.11-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9b782c4abaf27c867db29cbbe48804e6", "sha256": "5fadcbcc96955fdc74326d2f41df896df7ca0c93180e08144c68b8be772201c1" }, "downloads": -1, "filename": "pyppyn-0.3.11.tar.gz", "has_sig": false, "md5_digest": "9b782c4abaf27c867db29cbbe48804e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24747, "upload_time": "2019-05-06T17:43:23", "url": "https://files.pythonhosted.org/packages/0f/33/595206486dbad039b573237a8010d765f89e379b2c94c32152ea932d5643/pyppyn-0.3.11.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "66365ff694ddf58d0b292d107fe9038d", "sha256": "6e4eb5556afdfead182116b8aaa2c3c86c6c4806a1a7e7939ef2898c5fb45f83" }, "downloads": -1, "filename": "pyppyn-0.3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "66365ff694ddf58d0b292d107fe9038d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9467, "upload_time": "2018-04-26T23:44:46", "url": "https://files.pythonhosted.org/packages/1b/61/31f3fa880b420e46788e6ce631801f832bbe7ae5afd52770439f58b129f2/pyppyn-0.3.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "edb03053ac0563bc749e782faa16fd15", "sha256": "49531aa12ff2acea80485a841f722cf1d321c2f49159d841dabfb3909dd95799" }, "downloads": -1, "filename": "pyppyn-0.3.2.tar.gz", "has_sig": false, "md5_digest": "edb03053ac0563bc749e782faa16fd15", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18507, "upload_time": "2018-04-26T23:44:47", "url": "https://files.pythonhosted.org/packages/56/cb/482e2d7d4bec6f00345a379c069c49dbb434fff5fd28a422aff25641e61a/pyppyn-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "6fe0ca3838027ec8a72e1b4ae67219c0", "sha256": "a88c0a1b00bc02ad308699909a9bbd1198d040fa73cc36fecc8b1e85f2826a91" }, "downloads": -1, "filename": "pyppyn-0.3.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6fe0ca3838027ec8a72e1b4ae67219c0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9542, "upload_time": "2018-05-07T23:55:56", "url": "https://files.pythonhosted.org/packages/89/48/5a19efcdad6226a264205ac5ab412aea6906e7e7bc68a06ce17a77daf83d/pyppyn-0.3.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "be554fb5ffaf7f68f7f57735f97217af", "sha256": "c3e1332f21f0cc7595e75fb63c8d63e6a376cb756fb8119d8db2ed472586a996" }, "downloads": -1, "filename": "pyppyn-0.3.3.tar.gz", "has_sig": false, "md5_digest": "be554fb5ffaf7f68f7f57735f97217af", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19611, "upload_time": "2018-05-07T23:55:57", "url": "https://files.pythonhosted.org/packages/fe/c7/657d84dc40ed4a416d4f5ea7eb89cd0b187e02f556fc2e569348189ea190/pyppyn-0.3.3.tar.gz" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "ab9ebc67ce113b8dc3ac74a1bb05aafa", "sha256": "fce8df579b4ab28d2ee6bc44573440ac39956c5e2fb323e11b5f79e408a85461" }, "downloads": -1, "filename": "pyppyn-0.3.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ab9ebc67ce113b8dc3ac74a1bb05aafa", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14783, "upload_time": "2018-06-21T20:45:26", "url": "https://files.pythonhosted.org/packages/f2/95/86bf29a0a84dec0ed8b3c05783ccae567807182e8ad4130058522dd47702/pyppyn-0.3.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d96db7e6dee306f6d88646dec42cb4b4", "sha256": "f176202929af30d8a5dc16f01fa4eb33ace935846d384ed8a2bed3d44cfb3275" }, "downloads": -1, "filename": "pyppyn-0.3.4.tar.gz", "has_sig": false, "md5_digest": "d96db7e6dee306f6d88646dec42cb4b4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24111, "upload_time": "2018-06-21T20:45:27", "url": "https://files.pythonhosted.org/packages/8e/15/fdbab4719f2177178525ed851e520e7d155a47864780c1f5f50241205b4e/pyppyn-0.3.4.tar.gz" } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "43ac34e45c9eedd4226a2ccefe78b277", "sha256": "741955c3073748bab22c38e9ee412749f78390523fd0d7e965aa1c1d0952608e" }, "downloads": -1, "filename": "pyppyn-0.3.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "43ac34e45c9eedd4226a2ccefe78b277", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18803, "upload_time": "2019-01-06T02:59:59", "url": "https://files.pythonhosted.org/packages/59/2d/30622a49c8e3a7a8fa97fb66313b4a200c091cf4adc0fa2fdcab8f2eb49a/pyppyn-0.3.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e89e5a0374e1d3885ac0fd2944fe5c39", "sha256": "37391b6766bda2017b6cd286b2d7e6cf4f384b46ec53e56537d710dab37fac53" }, "downloads": -1, "filename": "pyppyn-0.3.5.tar.gz", "has_sig": false, "md5_digest": "e89e5a0374e1d3885ac0fd2944fe5c39", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24161, "upload_time": "2019-01-06T03:00:00", "url": "https://files.pythonhosted.org/packages/e5/45/8fa1d21defb8e9185848aabb714c3b57168cb8b653985aa33387c41af821/pyppyn-0.3.5.tar.gz" } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "ef0a58c7d54605f46b00917f4bd486de", "sha256": "26c76575b1c32dee3518cbe671c1ae39225319c30a8082bdcc94e53eb6858b54" }, "downloads": -1, "filename": "pyppyn-0.3.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ef0a58c7d54605f46b00917f4bd486de", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19189, "upload_time": "2019-01-23T19:35:39", "url": "https://files.pythonhosted.org/packages/e4/55/8ecd22e8e135c5ef33d5bac7478e079535400570549ab12ac1241da9c49b/pyppyn-0.3.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2bf488fe6a9207235b0f661c5b3becd6", "sha256": "8c174d857dc61c077af9c0938aa626738a3e18829adcfa98580f8c38c479a7f1" }, "downloads": -1, "filename": "pyppyn-0.3.6.tar.gz", "has_sig": false, "md5_digest": "2bf488fe6a9207235b0f661c5b3becd6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24455, "upload_time": "2019-01-23T19:35:41", "url": "https://files.pythonhosted.org/packages/e4/94/39abfdfceffc4b7135453296e9019e578d770d28da840335dfa82ccaa98d/pyppyn-0.3.6.tar.gz" } ], "0.3.7": [ { "comment_text": "", "digests": { "md5": "cb9e2b33277c6cb082277ed0521ecc45", "sha256": "326ec5f8b54999083595cac3c10a6fe929c6de8ac96db5ec44727f3ae16ea082" }, "downloads": -1, "filename": "pyppyn-0.3.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cb9e2b33277c6cb082277ed0521ecc45", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19217, "upload_time": "2019-01-24T01:54:09", "url": "https://files.pythonhosted.org/packages/12/f0/e994a49f9e8365077c4c0ab361b034f439b521a317bb925f0162ad265a6a/pyppyn-0.3.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0b30ba9b1cb19eca23728e05b3962332", "sha256": "39c0d4e9ecf6d79ee103dfd29e8b5399315900ecbbfcd8e4e67235de31ac8375" }, "downloads": -1, "filename": "pyppyn-0.3.7.tar.gz", "has_sig": false, "md5_digest": "0b30ba9b1cb19eca23728e05b3962332", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24353, "upload_time": "2019-01-24T01:54:10", "url": "https://files.pythonhosted.org/packages/e0/fc/85e2b86e1de43ef055ba9026d85bc461933e1aceb1cf9c98cd48c37e3157/pyppyn-0.3.7.tar.gz" } ], "0.3.8": [ { "comment_text": "", "digests": { "md5": "f264e5558e631eb9f655136360f42f2a", "sha256": "6514d505cfab0c141c10c2b437f29cc0879da2524dcfff29b3943b0d5fb0bee3" }, "downloads": -1, "filename": "pyppyn-0.3.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f264e5558e631eb9f655136360f42f2a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19302, "upload_time": "2019-01-24T20:22:22", "url": "https://files.pythonhosted.org/packages/cd/51/7cf7341938cb415f4798af3c0905465e1f70cd1123460969d473f59d6cdc/pyppyn-0.3.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8eb486c2f39f407152b334cea3a298cf", "sha256": "cd97c324198785a728a10de3721057d8472d285c021251d22e68491a146fbc79" }, "downloads": -1, "filename": "pyppyn-0.3.8.tar.gz", "has_sig": false, "md5_digest": "8eb486c2f39f407152b334cea3a298cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24506, "upload_time": "2019-01-24T20:22:23", "url": "https://files.pythonhosted.org/packages/a9/70/8fb2996fda803686f1d4d77542de39d232eec3eb0210ff5f2ab6355aeb25/pyppyn-0.3.8.tar.gz" } ], "0.3.9": [ { "comment_text": "", "digests": { "md5": "962b75c3103080201d92351ff89646eb", "sha256": "fb963848b0fbcd92a63cc17dccc40ac2166543a16296d6e8cd3d4224ecac3b62" }, "downloads": -1, "filename": "pyppyn-0.3.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "962b75c3103080201d92351ff89646eb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19325, "upload_time": "2019-01-31T15:16:03", "url": "https://files.pythonhosted.org/packages/95/af/2a7cdef4ca498dc1fc1511766bac9cdcd278d9c184901cffcf9307577f6a/pyppyn-0.3.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f6463f985b47d55dfa24caf30cd16843", "sha256": "39814ee4cd12debf8eb743ce4179e1c249d8167828871d0d24e2ab71d1482111" }, "downloads": -1, "filename": "pyppyn-0.3.9.tar.gz", "has_sig": false, "md5_digest": "f6463f985b47d55dfa24caf30cd16843", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24710, "upload_time": "2019-01-31T15:16:05", "url": "https://files.pythonhosted.org/packages/fd/aa/9ac21a4fc2eba7d772c72e3ae90c715d2c8f677556406a0c0b6acc2bea3e/pyppyn-0.3.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "75ec31c3b01e3debd7e6e8a0fd35c962", "sha256": "bd8a2ae134992d74c330f0791c17a640311b2b1f66ed03f9e670297abb38fc4d" }, "downloads": -1, "filename": "pyppyn-0.3.11-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "75ec31c3b01e3debd7e6e8a0fd35c962", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19345, "upload_time": "2019-05-06T17:43:21", "url": "https://files.pythonhosted.org/packages/e5/76/c08f31ccd05795708fa4488c882cd558ba0794a5c5cf3036977f1198a07c/pyppyn-0.3.11-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9b782c4abaf27c867db29cbbe48804e6", "sha256": "5fadcbcc96955fdc74326d2f41df896df7ca0c93180e08144c68b8be772201c1" }, "downloads": -1, "filename": "pyppyn-0.3.11.tar.gz", "has_sig": false, "md5_digest": "9b782c4abaf27c867db29cbbe48804e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24747, "upload_time": "2019-05-06T17:43:23", "url": "https://files.pythonhosted.org/packages/0f/33/595206486dbad039b573237a8010d765f89e379b2c94c32152ea932d5643/pyppyn-0.3.11.tar.gz" } ] }