{ "info": { "author": "Zope Foundation and Contributors", "author_email": "zope-dev@zope.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 6 - Mature", "Environment :: Web Environment", "Framework :: Zope", "Framework :: Zope :: 4", "License :: OSI Approved :: Zope Public License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: Implementation :: CPython" ], "description": ".. image:: https://travis-ci.org/zopefoundation/Products.PythonScripts.svg?branch=master\n :target: https://travis-ci.org/zopefoundation/Products.PythonScripts\n\n.. image:: https://coveralls.io/repos/github/zopefoundation/Products.PythonScripts/badge.svg?branch=master\n :target: https://coveralls.io/github/zopefoundation/Products.PythonScripts?branch=master\n\n.. image:: https://img.shields.io/pypi/v/Products.PythonScripts.svg\n :target: https://pypi.org/project/Products.PythonScripts/\n :alt: Current version on PyPI\n\n.. image:: https://img.shields.io/pypi/pyversions/Products.PythonScripts.svg\n :target: https://pypi.org/project/Products.PythonScripts/\n :alt: Supported Python versions\n\n\nProducts.PythonScripts\n======================\nThe Python Scripts product provides support for restricted execution of\nPython scripts, exposing them as callable objects within the Zope\nenvironment.\n\nProviding access to extra modules\n---------------------------------\nPython script objects have a limited number of \"safe\" modules\navailable to them by default. In the course of working with Zope,\nyou will probably wish to make other modules available to script\nobjects.\n\nThe Utility.py module in the PythonScripts products provides a\nsimple way to make modules available for use by script objects\non a site-wide basis. Before making a module available to Python\nscripts, you should carefully consider the potential for abuse\nor misuse of the module, since all users with permission to\ncreate and edit Python scripts will be able to use any functions\nand classes defined in the module. In some cases, you may want to\ncreate a custom module that just imports a subset of names from\nanother module and make that custom module available to reduce\nthe risk of abuse.\n\nThe easiest way to make modules available to Python scripts on\nyour site is to create a new directory in your Products directory\ncontaining an `__init__.py` file. At Zope startup time, this\n\"product\" will be imported, and any module assertions you make\nin the `__init__.py` will take effect. Here's how to do it:\n\n- In your Products directory (either in lib/python of your\n Zope installation or in the root of your Zope install,\n depending on your deployment model), create a new directory\n with a name like \"GlobalModules\".\n\n- In the new directory, create a file named `__init__.py`.\n\n- Edit the `__init__.py` file, and add calls to the 'allow_module'\n function (located in the Products.PythonScripts.Utility module),\n passing the names of modules to be enabled for use by scripts.\n For example::\n\n # Global module assertions for Python scripts\n from Products.PythonScripts.Utility import allow_module\n\n allow_module('base64')\n allow_module('re')\n allow_module('DateTime.DateTime')\n\n This example adds the modules 'base64', 're' and the 'DateTime'\n module in the 'DateTime' package for use by Python scripts. Note\n that for packages (dotted names), each module in the package path\n will become available to script objects.\n\n- Restart your Zope server. After restarting, the modules you enabled\n in your custom product will be available to Python scripts.\n\nPlacing security assertions within the package/module you are trying\nto import will not work unless that package/module is located in\nyour Products directory.\n\nThis is because that package/module would have to be imported for its\nincluded security assertions to take effect, but to do\nthat would require importing a module without any security\ndeclarations, which defeats the point of the restricted\nPython environment.\n\nProducts work differently as they are imported at Zope startup.\nBy placing a package/module in your Products directory, you are\nasserting, among other things, that it is safe for Zope to check\nthat package/module for security assertions. As a result, please\nbe careful when place packages or modules that are not Zope Products\nin the Products directory.\n\nChangelog\n=========\n\n4.9 (2019-10-09)\n----------------\n- prevent ResourceWarning/Error by closing default contents file\n (`#39 `_)\n\n\n4.8 (2019-09-04)\n----------------\n\n- Show proper error message for not allowed identifiers.\n (`#33 `_)\n\n- Restore History ZMI tab as Zope is supporting it again.\n (`#38 `_)\n\n\n4.7 (2019-05-21)\n----------------\n\n- Make sure a template's ``_body`` attribute is a native string in Python 3\n (`#30 `_)\n\n\n4.6 (2019-04-15)\n----------------\n\n- Fix a serious error that prevents page templates from compiling\n (`#27 `_)\n\n\n4.5 (2019-04-07)\n----------------\n\n- Provide a single default script content template for Python 2 and 3\n\n- Prevent deprecation warning by using ``importlib`` instead of ``imp``\n (`#24 `_)\n\n- Prevent syntax warning due to outdated default script content\n (`#26 `_)\n\n- Allow for entering a title when adding a Python Script\n (`#25 `_)\n\n- adding badges to the README for GitHub and PyPI\n\n- Package metadata cleanups\n\n- cleaned up tox test configuration\n\n\n4.4 (2019-03-08)\n----------------\n\n- Specify supported Python versions using ``python_requires`` in setup.py\n (`Zope#481 `_)\n\n- Add support for Python 3.8\n\n\n4.3 (2019-02-09)\n----------------\n\n- Show a message instead of exception for empty file upload\n (`#21 `_)\n\n\n4.2 (2018-10-11)\n----------------\n\n- Add support for Python 3.7.\n\n- Drop support for Python 3.4.\n\n- Force recompilation of scripts as the compiled code is now stored\n on `__code__` instead of `func_code`.\n\n- Add a Python 3 compatible default script.\n (`#10 `_)\n\n- Fix security declaration for ``Products.PythonScripts.standard`` which was\n broken since version 3.0.\n (`Zope#209 `_)\n\n- Fix HTTP-500 error which occurred when entering code containing a\n syntax error in a PythonScript. It is now rendered as error message like\n other errors.\n (`#11 `_)\n\n- Update the tests to `RestrictedPython >= 4.0b4`, thus requiring at lest this\n version.\n (`#17 `_)\n\n- Update HTML code of ZMI for Bootstrap ZMI.\n (`#16 `_)\n\n- Drop support for historical versions which no longer exist since Zope 4.0a2.\n\n\n4.1 (2017-06-19)\n----------------\n\n- Add support for Python 3.4 up to 3.6.\n\n\n4.0.1 (2017-02-06)\n------------------\n\n- Remove `bobobase_modification_time` from edit template.\n\n4.0 (2016-08-06)\n----------------\n\n- Add compatibility with webdav changes in Zope 4.0a2.\n\n.. caution::\n\n This version needs Zope2 >= 4.0 to run!\n\n3.0 (2016-07-18)\n----------------\n\n- Remove HelpSys support.\n\n2.13.2 (2012-09-09)\n-------------------\n\n- Correct module security declaration for our `standard` module.\n\n2.13.1 (2012-09-09)\n-------------------\n\n- LP #1047318: Adjust tests.\n\n2.13.0 (2010-07-10)\n-------------------\n\n- Released as separate package.\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/zopefoundation/Products.PythonScripts", "keywords": "", "license": "ZPL 2.1", "maintainer": "", "maintainer_email": "", "name": "Products.PythonScripts", "package_url": "https://pypi.org/project/Products.PythonScripts/", "platform": "", "project_url": "https://pypi.org/project/Products.PythonScripts/", "project_urls": { "Homepage": "https://github.com/zopefoundation/Products.PythonScripts", "Issue Tracker": "https://github.com/zopefoundation/Products.PythonScripts/issues", "Sources": "https://github.com/zopefoundation/Products.PythonScripts" }, "release_url": "https://pypi.org/project/Products.PythonScripts/4.9/", "requires_dist": [ "setuptools", "AccessControl", "Acquisition", "DateTime", "DocumentTemplate", "RestrictedPython (>=4.0b5)", "zExceptions", "Zope (>=4.1.2)" ], "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "summary": "Provides support for restricted execution of Python scripts in Zope.", "version": "4.9" }, "last_serial": 5951459, "releases": { "2.13.0": [ { "comment_text": "", "digests": { "md5": "db1fad6815cb238a58dbbab8d5e95667", "sha256": "a8339d9e24cd47e666c6c16eb4e4a2441ef6ad076282fbaf64595bbe77781b1c" }, "downloads": -1, "filename": "Products.PythonScripts-2.13.0.zip", "has_sig": false, "md5_digest": "db1fad6815cb238a58dbbab8d5e95667", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49773, "upload_time": "2010-07-10T15:25:03", "url": "https://files.pythonhosted.org/packages/5a/23/3a915021ad9b046c170204f1c5c9914f472d35c01f629ddce162a7a2f82e/Products.PythonScripts-2.13.0.zip" } ], "2.13.1": [ { "comment_text": "", "digests": { "md5": "f4c29625a25d07fbbd9c7b5f156f8605", "sha256": "1244d73d435762ac69abe4d0b43b6e3ae5a519b3aea757b4be5a8708016c6aa0" }, "downloads": -1, "filename": "Products.PythonScripts-2.13.1.zip", "has_sig": false, "md5_digest": "f4c29625a25d07fbbd9c7b5f156f8605", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50266, "upload_time": "2012-09-09T10:40:35", "url": "https://files.pythonhosted.org/packages/67/f5/d3028e5b07508c6ef46b3e4ce0866fd173cbe7a99d9133014c76821bcec4/Products.PythonScripts-2.13.1.zip" } ], "2.13.2": [ { "comment_text": "", "digests": { "md5": "04c86f2c45a29a162297a80dac61d14f", "sha256": "c1ae5a73850a7fce5bfa4c1abd598149e9c6dc1f81271b002e4dc6f8fce595b5" }, "downloads": -1, "filename": "Products.PythonScripts-2.13.2.zip", "has_sig": false, "md5_digest": "04c86f2c45a29a162297a80dac61d14f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50381, "upload_time": "2012-09-09T11:12:11", "url": "https://files.pythonhosted.org/packages/69/10/354788f825c17a015d189ce0e9c365934383f779b95ad585c170f7becdf8/Products.PythonScripts-2.13.2.zip" } ], "3.0": [ { "comment_text": "", "digests": { "md5": "1a8d949e969c1c834ba3082b5c9b06c1", "sha256": "745fdaf2f5055e9120f8c8d92ad77ec6370b540d00d1d2f92944833050d98c09" }, "downloads": -1, "filename": "Products.PythonScripts-3.0.zip", "has_sig": false, "md5_digest": "1a8d949e969c1c834ba3082b5c9b06c1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36310, "upload_time": "2016-07-18T19:30:16", "url": "https://files.pythonhosted.org/packages/4e/83/02da0255cb56708eb745e05ed6d1a5e91f766c748ffed343eb5353b1550e/Products.PythonScripts-3.0.zip" } ], "4.0": [ { "comment_text": "", "digests": { "md5": "d882f8ecf1e9afe6b10edc5cc8260ba7", "sha256": "e429f3cf9ef741087425cf2c6b0a809f236073b435bbb5785105b950b4ecc268" }, "downloads": -1, "filename": "Products.PythonScripts-4.0.zip", "has_sig": false, "md5_digest": "d882f8ecf1e9afe6b10edc5cc8260ba7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36453, "upload_time": "2016-08-06T16:43:16", "url": "https://files.pythonhosted.org/packages/22/27/f5fe6d65f1d5c5ed117c4044d16290347176651233079527245262240e80/Products.PythonScripts-4.0.zip" } ], "4.0.1": [ { "comment_text": "", "digests": { "md5": "6a3139cfa05f085182d4d0f7370bd4ad", "sha256": "38d47d7b1d3e1b2fec113c60f3fb409c2d965b0996a897506a0c33ee28f5b12e" }, "downloads": -1, "filename": "Products.PythonScripts-4.0.1.tar.gz", "has_sig": false, "md5_digest": "6a3139cfa05f085182d4d0f7370bd4ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21786, "upload_time": "2017-02-06T12:33:12", "url": "https://files.pythonhosted.org/packages/76/28/7a657b45abb7ed4d998e2b329a2e0e7f558f4d882f68fc40bd2b2d4854b2/Products.PythonScripts-4.0.1.tar.gz" } ], "4.1": [ { "comment_text": "", "digests": { "md5": "8d38ff52b80e6b5b9eb4a14de4973534", "sha256": "72466bd87948e752848f0602224647ee2e523dea29dc3a36fa11fb9525e789d8" }, "downloads": -1, "filename": "Products.PythonScripts-4.1.tar.gz", "has_sig": false, "md5_digest": "8d38ff52b80e6b5b9eb4a14de4973534", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24945, "upload_time": "2017-06-19T18:50:41", "url": "https://files.pythonhosted.org/packages/36/06/6920e72500598771f134da33e46aeae0035acb7d22d7c945f7aff6a94005/Products.PythonScripts-4.1.tar.gz" } ], "4.2": [ { "comment_text": "", "digests": { "md5": "797deea88de17b2897f0798cca34f04f", "sha256": "ed99bbb3ecda066a9d9a7782cccd7b64a20149f47997ced6d65e7b8c6c838eeb" }, "downloads": -1, "filename": "Products.PythonScripts-4.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "797deea88de17b2897f0798cca34f04f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 32726, "upload_time": "2018-10-11T13:48:25", "url": "https://files.pythonhosted.org/packages/21/c3/ec1957d96542ebe9fed7336a4bef7b25cf8145eefa41725bd4ffba682f36/Products.PythonScripts-4.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8f241dbb5dc736c9a92998ae1ea21035", "sha256": "4c2655a6c92eddf29f61bb99141b146e867f248f24af32d751d3a6c93f19c24c" }, "downloads": -1, "filename": "Products.PythonScripts-4.2.tar.gz", "has_sig": false, "md5_digest": "8f241dbb5dc736c9a92998ae1ea21035", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25514, "upload_time": "2018-10-11T13:48:27", "url": "https://files.pythonhosted.org/packages/d9/7c/d1a729e9bc291d93c2bd96449347591f15b78b8e8cdad164d5e855458a7c/Products.PythonScripts-4.2.tar.gz" } ], "4.3": [ { "comment_text": "", "digests": { "md5": "ee094dfe09b55a79b258d3a0d8ad37b8", "sha256": "ed332d580eb1ceb01bd32119d201ded56dd6f0ee6d453c32998a85455159b3ff" }, "downloads": -1, "filename": "Products.PythonScripts-4.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ee094dfe09b55a79b258d3a0d8ad37b8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 33239, "upload_time": "2019-02-09T14:05:03", "url": "https://files.pythonhosted.org/packages/3d/fe/3d5cb60c4303c4a8565cd7c7df56f41f111b9f35788a5ed3a5e5acaba993/Products.PythonScripts-4.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "280e9963ecc5e5e7faad4c30f7726d23", "sha256": "351f10b425dcd169bfcd8ff42468cf643483dcc5878457a2e7e778467ecfdde6" }, "downloads": -1, "filename": "Products.PythonScripts-4.3.tar.gz", "has_sig": false, "md5_digest": "280e9963ecc5e5e7faad4c30f7726d23", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26056, "upload_time": "2019-02-09T14:05:05", "url": "https://files.pythonhosted.org/packages/5d/15/41dc38d18e33e945c1f41799a18ea73eb1c0a4112a16694f3430b36d5c6c/Products.PythonScripts-4.3.tar.gz" } ], "4.4": [ { "comment_text": "", "digests": { "md5": "1d3e9b65a4ead2e91dacab39e68c91bb", "sha256": "5d70b906b850df08afc226494f9d5caa612eae123025a1e9ebf1dd6299d49738" }, "downloads": -1, "filename": "Products.PythonScripts-4.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1d3e9b65a4ead2e91dacab39e68c91bb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 33433, "upload_time": "2019-03-08T13:04:27", "url": "https://files.pythonhosted.org/packages/d4/7a/7273852273ce238a36b43b2706e794bf5ff551f75ae6b01e804353d0b52b/Products.PythonScripts-4.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "280975c7a7e3c56828ede467f7a73dba", "sha256": "316c231932006b4c9416e6ed4dd941252c6f55823df63349172c6b349c4e536a" }, "downloads": -1, "filename": "Products.PythonScripts-4.4.tar.gz", "has_sig": false, "md5_digest": "280975c7a7e3c56828ede467f7a73dba", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 26274, "upload_time": "2019-03-08T13:04:29", "url": "https://files.pythonhosted.org/packages/37/52/c2770db78dce8b9b307f5a1f957f9894602ab4e2792ebfe7a94a6e2f3546/Products.PythonScripts-4.4.tar.gz" } ], "4.5": [ { "comment_text": "", "digests": { "md5": "b90667ca918459155a819c32c9139a6f", "sha256": "a152fd057010b9ea25ebc11d2683202dabab7df25484dc8d128fdf2548d19fc7" }, "downloads": -1, "filename": "Products.PythonScripts-4.5-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "b90667ca918459155a819c32c9139a6f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 33487, "upload_time": "2019-04-07T23:50:57", "url": "https://files.pythonhosted.org/packages/dc/9c/a370ec23e9d654e5ae5b8ddd1f3d7e328c8b08a11373805e16d0497ec01c/Products.PythonScripts-4.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6c16ce9f2e442f4467a08ce90bc823a7", "sha256": "be201f9bc45a32a448d546eba4ebf553c41552a6afa4f38291e16b2ae892b6b7" }, "downloads": -1, "filename": "Products.PythonScripts-4.5.tar.gz", "has_sig": true, "md5_digest": "6c16ce9f2e442f4467a08ce90bc823a7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 26025, "upload_time": "2019-04-07T23:51:02", "url": "https://files.pythonhosted.org/packages/0e/3e/d0e59916d0b6417d070e694c815107d5205736197fd4885bb703e515d060/Products.PythonScripts-4.5.tar.gz" } ], "4.6": [ { "comment_text": "", "digests": { "md5": "3d8db74d09c3e3ca50381a2a7932a52d", "sha256": "fa3be902f698f09968fcbd894a54c0490df11e12c9ba7bd3b16d4771f48c0fa6" }, "downloads": -1, "filename": "Products.PythonScripts-4.6-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "3d8db74d09c3e3ca50381a2a7932a52d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 33537, "upload_time": "2019-04-15T14:44:41", "url": "https://files.pythonhosted.org/packages/ef/4b/1f131182029e44590dce6630204b967f3332e56a448e5a7b10ccb2bf8bf2/Products.PythonScripts-4.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4aa0d1e64f045724582bb6ed7e9bab05", "sha256": "c1567f82c54267b7e3d2b6ba0d5759c59a1a894323bdc3a41ef04ee291ac48e5" }, "downloads": -1, "filename": "Products.PythonScripts-4.6.tar.gz", "has_sig": true, "md5_digest": "4aa0d1e64f045724582bb6ed7e9bab05", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 25117, "upload_time": "2019-04-15T14:44:46", "url": "https://files.pythonhosted.org/packages/3c/60/8877d44ab27c33348b1446552da39dceaee1ae46a2e5ae342dab70141759/Products.PythonScripts-4.6.tar.gz" } ], "4.7": [ { "comment_text": "", "digests": { "md5": "e36aac9e40a991f0fd1c2c42f3c0b024", "sha256": "9129728eed3a869e4e8b716dbc094da35ba3c39f36e26d575ab3c8998a844b6c" }, "downloads": -1, "filename": "Products.PythonScripts-4.7-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "e36aac9e40a991f0fd1c2c42f3c0b024", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 33605, "upload_time": "2019-05-21T11:24:44", "url": "https://files.pythonhosted.org/packages/51/1a/6b94357fb273acaf753c8c9c0bbbc45bd7d7bcb5e54ac01f66a6e80f0481/Products.PythonScripts-4.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d1c870da4b5a559fff176365a1c7be14", "sha256": "e535beae9e99a4d4eb3a95fd40d7da4fd00cd4875ac97ffaa6c373e4622cbbf2" }, "downloads": -1, "filename": "Products.PythonScripts-4.7.tar.gz", "has_sig": true, "md5_digest": "d1c870da4b5a559fff176365a1c7be14", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 25261, "upload_time": "2019-05-21T11:24:50", "url": "https://files.pythonhosted.org/packages/98/25/41bb328282c75a2bcf86a9562247ce3595ff158afa8ecbdcd60fa29b6de0/Products.PythonScripts-4.7.tar.gz" } ], "4.8": [ { "comment_text": "", "digests": { "md5": "86112003307914d1a15996d4b49783ab", "sha256": "f8546b0633fce0f369092ae74d4bb9af0c89c03cc0d23636357a15e37c91510f" }, "downloads": -1, "filename": "Products.PythonScripts-4.8-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "86112003307914d1a15996d4b49783ab", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 34034, "upload_time": "2019-09-04T15:29:15", "url": "https://files.pythonhosted.org/packages/9d/71/e2ea50de3a441151c81e420f3bd3c9a549c9923ff59cb12fa6ffbc956963/Products.PythonScripts-4.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2aff540128631f02cfe5f93ad794bf94", "sha256": "a1d95cd294ecba453032feca2ed7d53fc78a5b448850c7aa403e5942559389f3" }, "downloads": -1, "filename": "Products.PythonScripts-4.8.tar.gz", "has_sig": true, "md5_digest": "2aff540128631f02cfe5f93ad794bf94", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 25826, "upload_time": "2019-09-04T15:29:20", "url": "https://files.pythonhosted.org/packages/6e/66/6e3d085abff4f8eb88fe9217a301028b6d2939797e4d0b43fb14abd46720/Products.PythonScripts-4.8.tar.gz" } ], "4.9": [ { "comment_text": "", "digests": { "md5": "734fc5a29c0c12adca08a0121a744e0e", "sha256": "3c6ee499b159d1377b379238c60213f0b656f8f7dd3b098c965c07d1071975a6" }, "downloads": -1, "filename": "Products.PythonScripts-4.9-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "734fc5a29c0c12adca08a0121a744e0e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 34095, "upload_time": "2019-10-09T19:02:08", "url": "https://files.pythonhosted.org/packages/15/ec/cfcd09dd9b8a5b9d25c9419c98497918e7f23fd7a77103560d873417edbb/Products.PythonScripts-4.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "14c6a15f2857097d82b6c638d6dca8f4", "sha256": "dfaf99c6c6c6e752d658a012ddcb0e41c63dec6147278dcd867814383dc0f4c4" }, "downloads": -1, "filename": "Products.PythonScripts-4.9.tar.gz", "has_sig": true, "md5_digest": "14c6a15f2857097d82b6c638d6dca8f4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 25981, "upload_time": "2019-10-09T19:02:14", "url": "https://files.pythonhosted.org/packages/42/55/1e213d12b443e38285da28351ed37e8a42880e2e468d1baa315b46b42e29/Products.PythonScripts-4.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "734fc5a29c0c12adca08a0121a744e0e", "sha256": "3c6ee499b159d1377b379238c60213f0b656f8f7dd3b098c965c07d1071975a6" }, "downloads": -1, "filename": "Products.PythonScripts-4.9-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "734fc5a29c0c12adca08a0121a744e0e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 34095, "upload_time": "2019-10-09T19:02:08", "url": "https://files.pythonhosted.org/packages/15/ec/cfcd09dd9b8a5b9d25c9419c98497918e7f23fd7a77103560d873417edbb/Products.PythonScripts-4.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "14c6a15f2857097d82b6c638d6dca8f4", "sha256": "dfaf99c6c6c6e752d658a012ddcb0e41c63dec6147278dcd867814383dc0f4c4" }, "downloads": -1, "filename": "Products.PythonScripts-4.9.tar.gz", "has_sig": true, "md5_digest": "14c6a15f2857097d82b6c638d6dca8f4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*", "size": 25981, "upload_time": "2019-10-09T19:02:14", "url": "https://files.pythonhosted.org/packages/42/55/1e213d12b443e38285da28351ed37e8a42880e2e468d1baa315b46b42e29/Products.PythonScripts-4.9.tar.gz" } ] }