{ "info": { "author": "Hunter Senft-Grupp", "author_email": "pylons-discuss@googlegroups.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "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" ], "description": "===================\nplaster_pastedeploy\n===================\n\n.. image:: https://img.shields.io/pypi/v/plaster_pastedeploy.svg\n :target: https://pypi.python.org/pypi/plaster_pastedeploy\n\n.. image:: https://img.shields.io/travis/Pylons/plaster_pastedeploy/master.svg\n :target: https://travis-ci.org/Pylons/plaster_pastedeploy\n\n``plaster_pastedeploy`` is a plaster_ plugin that provides a ``plaster.Loader``\nthat can parse ini files according to the standard set by PasteDeploy_. It\nsupports the ``wsgi`` plaster protocol, implementing the\n``plaster.protocols.IWSGIProtocol`` interface.\n\nUsage\n=====\n\nApplications should use ``plaster_pastedeploy`` to load settings from named\nsections in a configuration source (usually a file).\n\n- Please look at the documentation for plaster_ on how to integrate this\n loader into your application.\n\n- Please look at the documentation for PasteDeploy_ on the specifics of the\n supported INI file format.\n\nMost applications will want to use\n``plaster.get_loader(uri, protocols=['wsgi'])`` to get this loader. It then\nexposes ``get_wsgi_app``, ``get_wsgi_app_settings``, ``get_wsgi_filter`` and\n``get_wsgi_server``.\n\n.. code-block:: python\n\n import plaster\n\n loader = plaster.get_loader('development.ini', protocols=['wsgi'])\n # to get any section out of the config file\n settings = loader.get_settings('app:main')\n\n # to get settings for a WSGI app\n app_config = loader.get_wsgi_app_settings() # defaults to main\n\n # to get an actual WSGI app\n app = loader.get_wsgi_app() # defaults to main\n\n # to get a filter and compose it with an app\n filter = loader.get_wsgi_filter('filt')\n app = filter(app)\n\n # to get a WSGI server\n server = loader.get_wsgi_server() # defaults to main\n\n # to start the WSGI server\n server(app)\n\nAny ``plaster.PlasterURL`` options are forwarded as defaults to the loader.\nSome examples are below:\n\n- ``development.ini#myapp``\n\n- ``development.ini?http_port=8080#main``\n\n- ``pastedeploy+ini:///path/to/development.ini``\n\n- ``pastedeploy+ini://development.ini#foo``\n\n- ``egg:MyApp?debug=false#foo``\n\n.. _PasteDeploy: https://pastedeploy.readthedocs.io/en/latest/\n.. _plaster: https://docs.pylonsproject.org/projects/plaster/en/latest/\n\n\n0.7 (2019-04-12)\n================\n\n- Support Python 3.7.\n\n- Depend on ``pastedeploy >= 2.0`` to enforce new behavior when overriding\n defaults. Default values passed into the loader will now override values in\n the ``[DEFAULT]`` section.\n See https://github.com/Pylons/plaster_pastedeploy/pull/17\n\n0.6 (2018-07-11)\n================\n\n- Change ``setup_logging`` to invoke ``logging.config.fileConfig`` with\n ``disable_existing_loggers=False`` to avoid disabling any loggers that were\n imported prior to configuration of the logging system.\n See https://github.com/Pylons/plaster_pastedeploy/pull/16\n\n0.5 (2018-03-29)\n================\n\n- Removed environment variable support entirely for now. The feature requires\n bugfixes upstream in PasteDeploy which have not been done yet and this was\n breaking people's environments so it is gone for now.\n See https://github.com/Pylons/plaster_pastedeploy/pull/15\n\n0.4.2 (2017-11-20)\n==================\n\n- Fix ``ConfigDict.copy`` so that it works.\n See https://github.com/Pylons/plaster_pastedeploy/pull/14\n\n0.4.1 (2017-07-10)\n==================\n\n- Disable environment variable support on Python 2. PasteDeploy does not\n support escaping the contents on Python 2 which means any variable with\n a value of the format %(foo)s would break the parser. Because this is\n implicit behavior it was deemed too error prone to support.\n See https://github.com/Pylons/plaster_pastedeploy/pull/10\n\n- Escape environment variables such that their contents are not subject to\n interpolation. See https://github.com/Pylons/plaster_pastedeploy/pull/10\n\n- Invoke ``logging.basicConfig`` when ``setup_logging`` is called and the\n config file doesn't contain any logging setup or the URI is using the\n ``egg:`` protocol. See https://github.com/Pylons/plaster_pastedeploy/pull/11\n\n0.4 (2017-07-09)\n================\n\n- Fix ``get_settings`` for an arbitrary section to follow the same rules as\n PasteDeploy with regards to the handling of defaults. The goal of this\n package is to be compliant with PasteDeploy's format for all sections in\n the file such that there are no surprising format changes in various\n sections.\n\n Supported added for ``set default_foo = bar`` and ``get foo = default_foo``\n syntax to override a default value and to pull a default value into the\n settings, respectively. In the above example the value ``foo = bar`` would\n be returned. Any other defaults not pulled into the section via either\n interpolation or the ``get`` syntax will be ignored.\n\n See https://github.com/Pylons/plaster_pastedeploy/pull/6\n\n- Inject environment variables into the defaults automatically. These will\n be available for interpolation as ``ENV_``. For example if environment\n variable ``APP_DEBUG=true`` then ``%(ENV_APP_DEBUG)s`` will work within the\n ini file. See https://github.com/Pylons/plaster_pastedeploy/pull/7\n\n- ``get_settings`` and ``get_wsgi_app_settings`` both return only the local\n config now. However, the returned object has a ``global_conf`` attribute\n containing the defaults as well as a ``loader`` attribute pointing at\n the loader instance.\n See https://github.com/Pylons/plaster_pastedeploy/pull/8\n\n0.3.2 (2017-07-01)\n==================\n\n- Resolve an issue in which ``NoSectionError`` would not be properly caught on\n Python 2.7 if the ``configparser`` module was installed from PyPI.\n See https://github.com/Pylons/plaster_pastedeploy/issues/5\n\n0.3.1 (2017-06-02)\n==================\n\n- Recognize the ``pastedeploy+egg`` scheme as an ``egg`` type.\n\n0.3 (2017-06-02)\n================\n\n- Drop the ``ini`` scheme and replace with ``file+ini`` and ``pastedeploy``.\n Also rename ``ini+pastedeploy`` and ``egg+pastedeploy`` to\n ``pastedeploy+ini`` and ``pastedeploy+egg`` respectively.\n See https://github.com/Pylons/plaster_pastedeploy/pull/4\n\n0.2.1 (2017-03-29)\n==================\n\n- Fix a bug in 0.2 in which an exception was raised for an invalid section\n if the a non-config-file-based protocol was used.\n\n0.2 (2017-03-29)\n================\n\n- No longer raise ``plaster.NoSectionError`` exceptions. Empty dictionaries\n are returned for missing sections and a user should check ``get_sections``\n for the list of valid sections.\n\n0.1 (2017-03-27)\n================\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/Pylons/plaster_pastedeploy", "keywords": "plaster pastedeploy plaster_pastedeploy ini config egg", "license": "", "maintainer": "", "maintainer_email": "", "name": "plaster-pastedeploy", "package_url": "https://pypi.org/project/plaster-pastedeploy/", "platform": "", "project_url": "https://pypi.org/project/plaster-pastedeploy/", "project_urls": { "Homepage": "https://github.com/Pylons/plaster_pastedeploy" }, "release_url": "https://pypi.org/project/plaster-pastedeploy/0.7/", "requires_dist": [ "PasteDeploy (>=2.0)", "plaster (>=0.5)", "pytest ; extra == 'testing'", "pytest-cov ; extra == 'testing'" ], "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "summary": "A loader implementing the PasteDeploy syntax to be used by plaster.", "version": "0.7" }, "last_serial": 5132492, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "fef74d572decb9d025a37bde62e1d285", "sha256": "35d05ec035f59db5dac916fe30a3a1c25d6d52cb3be4233e97b78b9469274434" }, "downloads": -1, "filename": "plaster_pastedeploy-0.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "fef74d572decb9d025a37bde62e1d285", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 7381, "upload_time": "2017-03-28T04:11:51", "url": "https://files.pythonhosted.org/packages/67/07/802a8cfa4a7ff86f49e146c5022a3c2568cc5d16ae71d196db2ec6b2ea77/plaster_pastedeploy-0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "275bdca3b2ce92d16cfd51ff3e0a410a", "sha256": "773f72282f7085850c846d97331983f54fd70e66997f3f59252fb3e4af7f6cb8" }, "downloads": -1, "filename": "plaster_pastedeploy-0.1.tar.gz", "has_sig": true, "md5_digest": "275bdca3b2ce92d16cfd51ff3e0a410a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 11725, "upload_time": "2017-03-28T04:11:55", "url": "https://files.pythonhosted.org/packages/5d/84/bed53fff7e3deb1ce9e562712e709cafb7bcb3c6bcba1e32a6d68e94de38/plaster_pastedeploy-0.1.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "6e1da87ff6a9efcb4df71e925bbed28e", "sha256": "3181dbb2aabeb1fdc5816aad009a9c10b7deb8220f7a4b5e61cb18de0087fbbb" }, "downloads": -1, "filename": "plaster_pastedeploy-0.2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "6e1da87ff6a9efcb4df71e925bbed28e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 7572, "upload_time": "2017-03-29T18:12:39", "url": "https://files.pythonhosted.org/packages/c5/2b/086321647e993e4f814c780811c1bae66a194825b6c74166a52abf2024ca/plaster_pastedeploy-0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "27154b43ff315a8c2ab485335702e586", "sha256": "7ee99f7053fc1f7908c846bac4053ee35a0904fe5b817efc25ee75ef8052a06e" }, "downloads": -1, "filename": "plaster_pastedeploy-0.2.tar.gz", "has_sig": true, "md5_digest": "27154b43ff315a8c2ab485335702e586", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 11847, "upload_time": "2017-03-29T18:12:42", "url": "https://files.pythonhosted.org/packages/73/a3/5f70f672188e090287d281a6d7ab5b26debaf44d4d529d500c1f8e83b05a/plaster_pastedeploy-0.2.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "a54b3ee79710428b1aaee6f152e00539", "sha256": "53af71cc496674044943cf3a2ad5afdc5fcd410c335955228cc7a5569fddbf51" }, "downloads": -1, "filename": "plaster_pastedeploy-0.2.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "a54b3ee79710428b1aaee6f152e00539", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 7731, "upload_time": "2017-03-30T02:02:03", "url": "https://files.pythonhosted.org/packages/ac/f0/dc6979cf1d76558ccf6a4654db031c6b92ed74bf5bcd799d8eeb8a972298/plaster_pastedeploy-0.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "def0857ce653e0cb45b037f53cd368f2", "sha256": "bab3fd4cc298c021f115b531b9d6ae7678e185d9029c8c3411283e5f22d2bd46" }, "downloads": -1, "filename": "plaster_pastedeploy-0.2.1.tar.gz", "has_sig": true, "md5_digest": "def0857ce653e0cb45b037f53cd368f2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 12621, "upload_time": "2017-03-30T02:02:08", "url": "https://files.pythonhosted.org/packages/41/d1/ddc6f68a4737fb67e3fedcfd7d772805f88d0f0443d18e734b14cbc49350/plaster_pastedeploy-0.2.1.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "041e28d7d7cd78b22e19310fba974859", "sha256": "91ff68024666e6659a075ffd93c58b23189a1c731f681365f0f19fb505a72db1" }, "downloads": -1, "filename": "plaster_pastedeploy-0.3-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "041e28d7d7cd78b22e19310fba974859", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 8809, "upload_time": "2017-06-02T05:17:49", "url": "https://files.pythonhosted.org/packages/1f/7c/eae43cbe20b88f4a5c6e3eaba702d9568fc746d8e31c2ab991d8be66b07f/plaster_pastedeploy-0.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4fc6c720800f478bfc3553353327fff2", "sha256": "dfb1f87f4a590ad3f9a738d5ba8c66f1549f0b59af27002a4eb860235dea2055" }, "downloads": -1, "filename": "plaster_pastedeploy-0.3.tar.gz", "has_sig": true, "md5_digest": "4fc6c720800f478bfc3553353327fff2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 15063, "upload_time": "2017-06-02T05:17:51", "url": "https://files.pythonhosted.org/packages/5d/87/3903b6834818c7d24297ab3906941e143c02d948262f26aef85f81f896ef/plaster_pastedeploy-0.3.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "281913c5caa2098eca11ffa08ce5ce97", "sha256": "2207b9c33fe40e61abc28e2998ab7f3885b222f703027a733eef999d2a70d449" }, "downloads": -1, "filename": "plaster_pastedeploy-0.3.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "281913c5caa2098eca11ffa08ce5ce97", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 8915, "upload_time": "2017-06-02T05:39:12", "url": "https://files.pythonhosted.org/packages/14/6a/22c5319e09a32b106abcdca7a27a2ea8ba2ecf123f8de6b2a94d26e71b38/plaster_pastedeploy-0.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e0aefd0bacfcd734793de144e91fb5dc", "sha256": "68d3f7074545c6b9823a9a0850b9a78fdf3cdc7bdb1c0519912781dc5e3a8980" }, "downloads": -1, "filename": "plaster_pastedeploy-0.3.1.tar.gz", "has_sig": true, "md5_digest": "e0aefd0bacfcd734793de144e91fb5dc", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 15109, "upload_time": "2017-06-02T05:39:14", "url": "https://files.pythonhosted.org/packages/c6/60/c6a8d3f81726c7fa29a17be20a71578343aa39af9054ea97a6e8572bbe69/plaster_pastedeploy-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "0105fec03846857af0ed94ecb8a64444", "sha256": "52d3062a4cf65e854136863601f673860032d3e8aa406503d01dfa3b9c38ad92" }, "downloads": -1, "filename": "plaster_pastedeploy-0.3.2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "0105fec03846857af0ed94ecb8a64444", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 9029, "upload_time": "2017-07-01T15:47:56", "url": "https://files.pythonhosted.org/packages/ff/3b/1b0a398a8c958464f2525ba6d1de8633e0ffda3fbb105b4a48e30ea46bc1/plaster_pastedeploy-0.3.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "507f15c1d5f8f26771e6f83e49426ad9", "sha256": "d0d445c38253b2fbf720a5171e815206effb2650f49b390fec41a9ecf14be881" }, "downloads": -1, "filename": "plaster_pastedeploy-0.3.2.tar.gz", "has_sig": true, "md5_digest": "507f15c1d5f8f26771e6f83e49426ad9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 15306, "upload_time": "2017-07-01T15:47:57", "url": "https://files.pythonhosted.org/packages/0c/1e/d6b3377e3c5577d874e2f8b8fc5440d265ae090df21f18c64f4893054b24/plaster_pastedeploy-0.3.2.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "853d438a52025b27690812b0a1623cdf", "sha256": "1e7b1695a2094d776564931db4351c0ab839077d0bda4e8688db1b04be6b3936" }, "downloads": -1, "filename": "plaster_pastedeploy-0.4.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "853d438a52025b27690812b0a1623cdf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 11319, "upload_time": "2017-07-11T04:43:36", "url": "https://files.pythonhosted.org/packages/79/62/12e24c683a5ed7c19ef0752d989a34eec754489a1d6fc72782554d5340f2/plaster_pastedeploy-0.4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f48d5344b922e56c4978eebf1cd2e0d3", "sha256": "5b92469d4efb26f3581ea32ecc64a513891693d29639fbd2ab2ec755949f2bd3" }, "downloads": -1, "filename": "plaster_pastedeploy-0.4.1.tar.gz", "has_sig": true, "md5_digest": "f48d5344b922e56c4978eebf1cd2e0d3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 18456, "upload_time": "2017-07-11T04:43:38", "url": "https://files.pythonhosted.org/packages/9d/6e/f8be01ed41c94e6c54ac97cf2eb142a702aae0c8cce31c846f785e525b40/plaster_pastedeploy-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "61382236f64a3d37dcc8314975c6f8f7", "sha256": "1c25ac22b6eaee828d2986d16d270c11ac335ebead80def32c3e218588daba9a" }, "downloads": -1, "filename": "plaster_pastedeploy-0.4.2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "61382236f64a3d37dcc8314975c6f8f7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 11460, "upload_time": "2017-11-21T04:35:54", "url": "https://files.pythonhosted.org/packages/1a/d9/36f99311f4f44b86595696b4f7089252cfd5e6f4cea58df65749e8079a02/plaster_pastedeploy-0.4.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "58fd7852002909378e818c9d5b71e90a", "sha256": "2a401228c7cfbe38f728249e75af7a666f91c61d642cbb8fcb78a71df69d2754" }, "downloads": -1, "filename": "plaster_pastedeploy-0.4.2.tar.gz", "has_sig": true, "md5_digest": "58fd7852002909378e818c9d5b71e90a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 20519, "upload_time": "2017-11-21T04:35:56", "url": "https://files.pythonhosted.org/packages/2c/62/0daf9c0be958e785023e583e51baac15863699e956bfb3d448898d80edd8/plaster_pastedeploy-0.4.2.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "d8b0a821689c7cfeab5c4dcf0fb23d47", "sha256": "25cc239d767c5fab0afa44b1ed3c1a33a3d7ec6302ff2e599aec674b77ff6667" }, "downloads": -1, "filename": "plaster_pastedeploy-0.5-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "d8b0a821689c7cfeab5c4dcf0fb23d47", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 11003, "upload_time": "2018-03-29T17:07:50", "url": "https://files.pythonhosted.org/packages/81/25/b537cb592ca52b8b8f0f445dd3b1b6fd7e31a8c26bb295b1327be554bd9c/plaster_pastedeploy-0.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9cc699022c91fb09293680662cba177d", "sha256": "70a3185b2a3336996a26e9987968cf35e84cf13390b7e8a0a9a91eb8f6f85ba9" }, "downloads": -1, "filename": "plaster_pastedeploy-0.5.tar.gz", "has_sig": true, "md5_digest": "9cc699022c91fb09293680662cba177d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 19869, "upload_time": "2018-03-29T17:07:51", "url": "https://files.pythonhosted.org/packages/e7/05/cc12d9d3efaa10046b6ec5de91b16486c95de4847dc57599bf58021a3d5c/plaster_pastedeploy-0.5.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "f18b4319dd1f792106f0692a656c2484", "sha256": "71e29b0ab90df8343bca5f0debe4706f0f8147308a78922c8c26e8252809bce4" }, "downloads": -1, "filename": "plaster_pastedeploy-0.6-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "f18b4319dd1f792106f0692a656c2484", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 7768, "upload_time": "2018-07-11T16:57:52", "url": "https://files.pythonhosted.org/packages/d9/e2/de7cd499923dbf6aacc9b243f262817bfea3ffbbd4dcc5847e1aaec817a7/plaster_pastedeploy-0.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ad1ff568631801276a109e035d165ae0", "sha256": "c231130cb86ae414084008fe1d1797db7e61dc5eaafb5e755de21387c27c6fae" }, "downloads": -1, "filename": "plaster_pastedeploy-0.6.tar.gz", "has_sig": true, "md5_digest": "ad1ff568631801276a109e035d165ae0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 20104, "upload_time": "2018-07-11T16:57:54", "url": "https://files.pythonhosted.org/packages/3f/e7/6a6833158d2038ec40085433308a1e164fd1dac595513f6dd556d5669bb8/plaster_pastedeploy-0.6.tar.gz" } ], "0.7": [ { "comment_text": "", "digests": { "md5": "9d6795e94454cca7dd940ff9fd73426b", "sha256": "7c8aa37c917b615c70bf942b24dc1e0455c49f62f1a2214b1a0dd98871644bbb" }, "downloads": -1, "filename": "plaster_pastedeploy-0.7-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "9d6795e94454cca7dd940ff9fd73426b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 7847, "upload_time": "2019-04-12T06:21:16", "url": "https://files.pythonhosted.org/packages/11/c4/0470056ea324c7a420c22647be512dec1b5e32b1b6e77e27c61838d2811c/plaster_pastedeploy-0.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a2e27e8af57ef64a3b9436c3236536f4", "sha256": "391d93a4e1ff81fc3bae27508ebb765b61f1724ae6169f83577f06b6357be7fd" }, "downloads": -1, "filename": "plaster_pastedeploy-0.7.tar.gz", "has_sig": true, "md5_digest": "a2e27e8af57ef64a3b9436c3236536f4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 19858, "upload_time": "2019-04-12T06:21:18", "url": "https://files.pythonhosted.org/packages/99/69/2d3bc33091249266a1bd3cf24499e40ab31d54dffb4a7d76fe647950b98c/plaster_pastedeploy-0.7.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "9d6795e94454cca7dd940ff9fd73426b", "sha256": "7c8aa37c917b615c70bf942b24dc1e0455c49f62f1a2214b1a0dd98871644bbb" }, "downloads": -1, "filename": "plaster_pastedeploy-0.7-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "9d6795e94454cca7dd940ff9fd73426b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 7847, "upload_time": "2019-04-12T06:21:16", "url": "https://files.pythonhosted.org/packages/11/c4/0470056ea324c7a420c22647be512dec1b5e32b1b6e77e27c61838d2811c/plaster_pastedeploy-0.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a2e27e8af57ef64a3b9436c3236536f4", "sha256": "391d93a4e1ff81fc3bae27508ebb765b61f1724ae6169f83577f06b6357be7fd" }, "downloads": -1, "filename": "plaster_pastedeploy-0.7.tar.gz", "has_sig": true, "md5_digest": "a2e27e8af57ef64a3b9436c3236536f4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 19858, "upload_time": "2019-04-12T06:21:18", "url": "https://files.pythonhosted.org/packages/99/69/2d3bc33091249266a1bd3cf24499e40ab31d54dffb4a7d76fe647950b98c/plaster_pastedeploy-0.7.tar.gz" } ] }