{ "info": { "author": "Steve Piercy", "author_email": "pylons-discuss@googlegroups.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Sphinx :: Theme", "Intended Audience :: Developers", "Intended Audience :: System Administrators", "License :: Repoze Public License", "Programming Language :: Python", "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", "Topic :: Documentation", "Topic :: Documentation :: Sphinx", "Topic :: Software Development :: Documentation" ], "description": "Pylons Sphinx Themes\n====================\n\nThis repository is a Python package that contains Sphinx themes for Pylons related projects. This project is based on `Pylons Sphinx Theme `_ (singular), but uses a package implementation instead of git submodules and manual steps.\n\nTo use a theme in your Sphinx documentation, follow this guide.\n\n\nEdit your project's ``setup.py``\n--------------------------------\n#. Add ``pylons-sphinx-themes`` to your project's requirements in its ``setup.py``.\n Here's an example from Pyramid.\n\n .. code-block:: python\n\n docs_extras = [\n 'Sphinx >= 1.7.5', # Read The Docs minimum version\n 'docutils',\n 'repoze.sphinx.autointerface',\n 'pylons-sphinx-themes',\n ]\n\n\nEdit your Sphinx's ``conf.py``\n------------------------------\n#. Near the top, add the following.\n\n .. code-block:: python\n\n import pylons_sphinx_themes\n\n#. Activate the theme.\n\n .. code-block:: python\n\n html_theme = 'pyramid'\n html_theme_path = pylons_sphinx_themes.get_html_themes_path()\n\n#. (Recommended) Enable `Ethical Ads `_.\n Doing so supports both `Read the Docs `_ and the `Python Software Foundation `_ with ad revenue.\n\n .. code-block:: python\n\n # Control display of sidebars\n html_sidebars = { '**': [\n 'localtoc.html',\n 'ethicalads.html',\n 'relations.html',\n 'sourcelink.html',\n 'searchbox.html',\n ] }\n\n#. If you were previously using the git submodule method to use the Pylons theme, then comment or delete the block of code under the following statement.\n\n .. code-block:: python\n\n # Add and use Pylons theme\n if 'sphinx-build' in ' '.join(sys.argv): # protect against dumb importers\n\n#. (Optional) Set a canonical root URL.\n The URL points to the root of the documentation, and requires a trailing slash.\n\n .. code-block:: python\n\n html_theme_options = dict(\n canonical_url='http://the_root_domain/latest/docs/'\n )\n\n\nUndo git submodule method\n-------------------------\nIf you were previously using the git submodule method to use the Pylons theme, then perform the following additional steps.\n\n#. Remove ``.gitmodules``.\n\n .. code-block:: bash\n\n cd \n git rm .gitmodules\n\n#. Deinitialize the submodule.\n\n .. code-block:: bash\n\n cd docs/_themes\n git submodule deinit .\n\n#. Remove the submodule's directory.\n\n .. code-block:: bash\n\n cd ..\n git rm _themes/\n\n#. Edit your Sphinx's ``Makefile``. The following is an `example diff `_ from Pyramid.\n\n .. code-block:: diff\n\n -html: themes\n +html:\n # ...\n -htmlhelp: themes\n +htmlhelp:\n #...\n -themes:\n - cd ..; git submodule update --init --recursive; cd docs;\n\n\nUpdate ``tox.ini``\n------------------\nIf you use tox, you can specify dependencies for building your docs either in your ``setup.py`` (preferred) or in your ``tox.ini`` (duplicitous). See the `example from Pyramid `_.\n\n.. code-block:: ini\n\n docs_extras = [\n 'Sphinx >= 1.7.5',\n 'docutils',\n 'repoze.sphinx.autointerface',\n 'pylons_sphinx_latesturl',\n 'pylons-sphinx-themes',\n ]\n\n # ...\n\n extras_require = {\n 'testing':testing_extras,\n 'docs':docs_extras,\n },\n\nOtherwise you can repeat yourself and edit your ``tox.ini``. The following example is from `waitress `_.\n\n.. code-block:: ini\n\n deps =\n Sphinx\n repoze.sphinx.autointerface\n pylons-sphinx-themes\n\n\nUpdate Read the Docs configuration\n----------------------------------\nIf you specify package requirements for Read the Docs, specify dependencies in your ``rtd.txt``. You can either name them explicitly, which might be duplicitous:\n\n.. code-block:: text\n\n pylons-sphinx-themes\n\nor you can rely on your ``setup.py`` configuration, specifying dependencies in only one place, by simply using this in your ``rtd.txt``.\n\n.. code-block:: text\n\n -e .[docs]\n\n\nAvailable themes\n----------------\n\n- **pylons** - the generic Pylons Project documentation theme\n- **pyramid** - the specific Pyramid documentation theme\n- **pylonsfw** - the specific Pylons Framework documentation theme\n\n\nChange log for pylons-sphinx-themes\n===================================\n\n1.0.10 (2018-09-25)\n-------------------\n\n- Add Read the Docs to the recipients of ad revenue.\n\n\n1.0.9 (2018-09-23)\n------------------\n\n- Remove hyphenation because it sometimes hyphenates inappropriately, such as\n in code.\n\n\n1.0.8 (2018-09-21)\n------------------\n\n- Fix support for Ethical Ads.\n\n\n1.0.7 (2018-09-21)\n------------------\n\n- Added support for Ethical Ads for Read The Docs. See\n https://github.com/Pylons/pylons-sphinx-themes/pull/12\n\n\n1.0.6 (2017-09-22)\n------------------\n\n- Update zest.releaser in order to release to PyPI.\n\n\n1.0.5 (2017-09-22)\n------------------\n\n- Clean up licensing\n https://github.com/Pylons/pylons-sphinx-themes/issues/8\n\n\n1.0.4 (2017-06-20)\n------------------\n\n- Specify line spacing for list items for only within the .body class.\n\n\n1.0.3 (2017-06-20)\n------------------\n\n- Add line spacing for list items. Closes #4.\n\n\n1.0.2 (2017-06-16)\n------------------\n\n- Remove HTTPS protocol to allow either HTTPS or HTTP.\n\n\n1.0.1 (2017-06-16)\n------------------\n\n- Use HTTPS for protocol of stylesheets.\n\n\n1.0 (2017-04-18)\n------------------\n\n- Use zest.releaser for releasing.\n- Improve documentation.\n\n\n0.3.1 (2015-04-15)\n------------------\n\n- Improve documentation.\n\n\n0.3 (2015-04-15)\n----------------\n\n- Convert from using git submodule used in\n https://github.com/Pylons/pylons_sphinx_theme to a package. See\n https://github.com/Pylons/pyramid/issues/1614\n\n- Initial commit.", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://pylonsproject.org", "keywords": "pyramid pylons web sphinx documentation", "license": "BSD-derived (http://www.repoze.org/LICENSE.txt)", "maintainer": "", "maintainer_email": "", "name": "pylons-sphinx-themes", "package_url": "https://pypi.org/project/pylons-sphinx-themes/", "platform": "", "project_url": "https://pypi.org/project/pylons-sphinx-themes/", "project_urls": { "Homepage": "https://pylonsproject.org" }, "release_url": "https://pypi.org/project/pylons-sphinx-themes/1.0.10/", "requires_dist": null, "requires_python": "", "summary": "Sphinx themes for Pylons Project documentation.", "version": "1.0.10" }, "last_serial": 4310613, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "202e204bd68834c54b686c57696ed201", "sha256": "24034f4e578b9d9cd06846995dbcbd286319a166f0c2e7f323cd21e5fd34aacc" }, "downloads": -1, "filename": "pylons-sphinx-themes-0.1.tar.gz", "has_sig": false, "md5_digest": "202e204bd68834c54b686c57696ed201", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3434, "upload_time": "2015-04-15T21:09:24", "url": "https://files.pythonhosted.org/packages/80/30/bb58580eb3bb04f13ffe07145ae9f0cad01dce44ce9fb4e21db588193c91/pylons-sphinx-themes-0.1.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "1762290f54bfd73c7c5cb7f12ceacb55", "sha256": "80c978866d1a9f11fb696b6c40a21889dbb597b740bff70509c99b20636e8578" }, "downloads": -1, "filename": "pylons-sphinx-themes-0.2.tar.gz", "has_sig": false, "md5_digest": "1762290f54bfd73c7c5cb7f12ceacb55", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 139616, "upload_time": "2015-04-16T00:01:43", "url": "https://files.pythonhosted.org/packages/17/4c/cb7b70f2fc4952d9a40375202e512adab9eb5ae229480e5d00be1f31fe80/pylons-sphinx-themes-0.2.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "5835a712ebaff313afc47c269907c325", "sha256": "1bec42f87cf451af2dc5fcd779c30acbb6cca79819cd1f1abdd005b4683a12d6" }, "downloads": -1, "filename": "pylons-sphinx-themes-0.2.1.tar.gz", "has_sig": false, "md5_digest": "5835a712ebaff313afc47c269907c325", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 140119, "upload_time": "2015-04-16T00:31:09", "url": "https://files.pythonhosted.org/packages/ed/5a/b2ed6161ae1f69e89097f46b28d65cb96bd11d4290fec1fb972ef22b4834/pylons-sphinx-themes-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "37aa53d6bbcf8cc5255f044aab664b2c", "sha256": "0f882f786af829bb2a0e6d02d4483c86aca0b8cbac7ebd191581215638511254" }, "downloads": -1, "filename": "pylons-sphinx-themes-0.2.2.tar.gz", "has_sig": false, "md5_digest": "37aa53d6bbcf8cc5255f044aab664b2c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 140124, "upload_time": "2015-04-16T14:51:52", "url": "https://files.pythonhosted.org/packages/e5/38/14f7e3b70907617e036fdd422a3ba9da0406973e04fb0c91f5b680cede70/pylons-sphinx-themes-0.2.2.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "c157c124bc50ae563e659c3cc167d65f", "sha256": "4762ad2bc6afd90d2a5c27a9f30333f4ec8a528ddb80e920fd09684268f8f2d7" }, "downloads": -1, "filename": "pylons-sphinx-themes-0.3.tar.gz", "has_sig": false, "md5_digest": "c157c124bc50ae563e659c3cc167d65f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 135046, "upload_time": "2015-04-16T19:54:00", "url": "https://files.pythonhosted.org/packages/67/7a/e3d0db2636cc759ce4b3b8cbcc3d80515f1a1964259827d63f9e0ac591c9/pylons-sphinx-themes-0.3.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "8f07c47c516b49ea88c0d3dc4ab8ca93", "sha256": "c107542e6a3ed89a9e9d9d2cd9d2f8ee3e6d551a394796bb6a9fb03a36afaa58" }, "downloads": -1, "filename": "pylons-sphinx-themes-0.3.1.tar.gz", "has_sig": false, "md5_digest": "8f07c47c516b49ea88c0d3dc4ab8ca93", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 135393, "upload_time": "2015-04-16T22:40:06", "url": "https://files.pythonhosted.org/packages/e0/7f/3e17aeed9fa4c6c4a200ae8ce5df61c399484c4d5a8fcec1d1052955d30d/pylons-sphinx-themes-0.3.1.tar.gz" } ], "1.0": [ { "comment_text": "", "digests": { "md5": "53c75c20952e66af34bd6d8f3f873767", "sha256": "d3fc7ad7b805801d5da0b5503f16105d087cb2afded87cb018a82e062f6e565c" }, "downloads": -1, "filename": "pylons_sphinx_themes-1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "53c75c20952e66af34bd6d8f3f873767", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 139161, "upload_time": "2017-04-16T23:38:42", "url": "https://files.pythonhosted.org/packages/f8/ac/0c5af8ea36522497916e5bfebfecd64b67346f1c21ce62d5e3e93834d68e/pylons_sphinx_themes-1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c0af7c237ccd2e19b2f7ba36ddc09bbf", "sha256": "a5085eecbfec7dbcf2cb4c93732aebc40278c1ce94cb3f4deb825d061eb35a98" }, "downloads": -1, "filename": "pylons-sphinx-themes-1.0.tar.gz", "has_sig": false, "md5_digest": "c0af7c237ccd2e19b2f7ba36ddc09bbf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 139444, "upload_time": "2017-04-16T23:36:38", "url": "https://files.pythonhosted.org/packages/c6/58/d4114bc11fd367c3a11dc66b5b17559306c9736da576a222b3b72c2c6b13/pylons-sphinx-themes-1.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "6b5a8d98b817fc64e05778ebb89b11ec", "sha256": "de3af27078b5c8ed9108576c672f0d9731b52bb501467603ae23d4a08092558a" }, "downloads": -1, "filename": "pylons_sphinx_themes-1.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6b5a8d98b817fc64e05778ebb89b11ec", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 139196, "upload_time": "2017-06-16T23:17:17", "url": "https://files.pythonhosted.org/packages/bd/6a/8524506433979809797662b0ad3f70ad12a45bd9afe41ff140e2623dbf08/pylons_sphinx_themes-1.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "322c205bf91dc92999551e4fe73d9893", "sha256": "de54d97856728a00806f5724843217d1b676d5bdf00dd525b492708867e6d0bb" }, "downloads": -1, "filename": "pylons-sphinx-themes-1.0.1.tar.gz", "has_sig": false, "md5_digest": "322c205bf91dc92999551e4fe73d9893", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 139478, "upload_time": "2017-06-16T23:17:12", "url": "https://files.pythonhosted.org/packages/a6/9d/a5a7e4ee7d946701f55dce3fb53d957eb629233ed47e836cfb42754d9124/pylons-sphinx-themes-1.0.1.tar.gz" } ], "1.0.10": [ { "comment_text": "", "digests": { "md5": "d1feebfcf7aa3dff0564300103f79a93", "sha256": "52ce3b799adc10fa330d67bff5402e4067dce11f9e1412796a1ea50994a0b7a1" }, "downloads": -1, "filename": "pylons-sphinx-themes-1.0.10.tar.gz", "has_sig": false, "md5_digest": "d1feebfcf7aa3dff0564300103f79a93", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 142205, "upload_time": "2018-09-25T23:47:11", "url": "https://files.pythonhosted.org/packages/e9/ed/9a3bd8d404be20fb594352bc2682a7bb4aa72650d316535e0a5e82db2f60/pylons-sphinx-themes-1.0.10.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "101ec9087a11470620055061a3003df4", "sha256": "81e76ac9e0afc4c4e669dd965fbaa921585ea0c28ab2d824ea555f8fff718aba" }, "downloads": -1, "filename": "pylons_sphinx_themes-1.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "101ec9087a11470620055061a3003df4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 139300, "upload_time": "2017-06-16T23:54:23", "url": "https://files.pythonhosted.org/packages/9d/0e/5ea3d61e1b0c91c64932b7530949ac3b46f93c70589198b61c4c3869599d/pylons_sphinx_themes-1.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "af38901bcb78bae67851e303749c1620", "sha256": "f322d30f4032327923dfb5eded32239ec73ba36d6054640e3b01e800abfc0d91" }, "downloads": -1, "filename": "pylons-sphinx-themes-1.0.2.tar.gz", "has_sig": false, "md5_digest": "af38901bcb78bae67851e303749c1620", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 139626, "upload_time": "2017-06-16T23:54:18", "url": "https://files.pythonhosted.org/packages/d8/43/a734fce65c05622cfe806aaa4bda3c3ef5ebe2fed7a88994c1f34f9f50fd/pylons-sphinx-themes-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "9b78e60ec5f3bbece566d99b87c1ee54", "sha256": "6fad54111ea0e6acf44f6c6fc28ad6e539d3dbb0be28c529e52a4ba05ee3572d" }, "downloads": -1, "filename": "pylons_sphinx_themes-1.0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9b78e60ec5f3bbece566d99b87c1ee54", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 139380, "upload_time": "2017-06-20T21:49:01", "url": "https://files.pythonhosted.org/packages/c2/49/80d4006b3811ae1eeaaab5f9277fe6e7a13ac294beba1a9a67287cbf8a60/pylons_sphinx_themes-1.0.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "25a56ba89dc68528a123435f37db13ad", "sha256": "b539736867fa579907662cb1b56b5ef31c3a9c98056add7088ddaa7d78b3f4cf" }, "downloads": -1, "filename": "pylons-sphinx-themes-1.0.3.tar.gz", "has_sig": false, "md5_digest": "25a56ba89dc68528a123435f37db13ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 139734, "upload_time": "2017-06-20T21:48:56", "url": "https://files.pythonhosted.org/packages/d3/f7/68151b343ec48ac2c4018f611d41e37dfabf5a57ba3a32d4428739051c13/pylons-sphinx-themes-1.0.3.tar.gz" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "b335d87d6fde6ff846854a9732d9b6af", "sha256": "f1a80e504cdc669ad1f740814245d55ec3a540006cac29848e488d2daa608fda" }, "downloads": -1, "filename": "pylons_sphinx_themes-1.0.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b335d87d6fde6ff846854a9732d9b6af", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 139437, "upload_time": "2017-06-20T22:14:03", "url": "https://files.pythonhosted.org/packages/1f/36/5e0f2efc81de6febc4dd4d89c6a5340ca12defe92dae3478e47f5670a745/pylons_sphinx_themes-1.0.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2d5a2c3a0943dc0a6e00d4818c8d2f9a", "sha256": "406b83ed040ca36ca06a410df5810dbe550b615ce7bf3a01c0e86418db9b500e" }, "downloads": -1, "filename": "pylons-sphinx-themes-1.0.4.tar.gz", "has_sig": false, "md5_digest": "2d5a2c3a0943dc0a6e00d4818c8d2f9a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 139800, "upload_time": "2017-06-20T22:13:58", "url": "https://files.pythonhosted.org/packages/49/de/807e2254acb7f9c58002d24d2edd6018b6f02eab35525809e11132f55f7e/pylons-sphinx-themes-1.0.4.tar.gz" } ], "1.0.6": [ { "comment_text": "", "digests": { "md5": "639e8513d5ea5492c5e2d754e55c9ae2", "sha256": "f1f08370d6e3f507c571ed577568c25a29a9d003c9e871bede0bbe64cb07de6f" }, "downloads": -1, "filename": "pylons_sphinx_themes-1.0.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "639e8513d5ea5492c5e2d754e55c9ae2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 139628, "upload_time": "2017-09-22T20:46:54", "url": "https://files.pythonhosted.org/packages/57/0b/d40d23e720359c31d86272f307e4fac09318d1e17d179b2ab52dc994a30e/pylons_sphinx_themes-1.0.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4585a8032eee440fa1d89f9cf945b58b", "sha256": "2fc29def153594e0f5e7facf674a8aa9e9a60ca1617cc9db234fa9204ee461ec" }, "downloads": -1, "filename": "pylons-sphinx-themes-1.0.6.tar.gz", "has_sig": false, "md5_digest": "4585a8032eee440fa1d89f9cf945b58b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 140798, "upload_time": "2017-09-22T20:46:52", "url": "https://files.pythonhosted.org/packages/ca/b3/cc202827dc6c1cb3ff17870d480168ab2f82677a468e5e4b03cbed62dcd6/pylons-sphinx-themes-1.0.6.tar.gz" } ], "1.0.7": [ { "comment_text": "", "digests": { "md5": "f0dddc7be157b586346c3f1d212b9f4d", "sha256": "19d0200d46a5970de9a5ea7d2c2b998e839f01d073fb884b14bd07ff66a96e3b" }, "downloads": -1, "filename": "pylons-sphinx-themes-1.0.7.tar.gz", "has_sig": false, "md5_digest": "f0dddc7be157b586346c3f1d212b9f4d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 141528, "upload_time": "2018-09-22T00:57:57", "url": "https://files.pythonhosted.org/packages/48/09/b1265ed620e50de240a959b570f0dad32d0e2ac827ac1285194cebad27b1/pylons-sphinx-themes-1.0.7.tar.gz" } ], "1.0.8": [ { "comment_text": "", "digests": { "md5": "75e614ede7deeb6be64cb93a0f534ed8", "sha256": "dbaa4301b36a8992c99441fea341490e06d8ffec36738aad494e3cf468754b5e" }, "downloads": -1, "filename": "pylons-sphinx-themes-1.0.8.tar.gz", "has_sig": false, "md5_digest": "75e614ede7deeb6be64cb93a0f534ed8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 141562, "upload_time": "2018-09-22T01:32:54", "url": "https://files.pythonhosted.org/packages/42/4b/d7d514a33036afd14a4091af2d3f4f13290adea918edf065890d69953b04/pylons-sphinx-themes-1.0.8.tar.gz" } ], "1.0.9": [ { "comment_text": "", "digests": { "md5": "15cb8a7c9a294f15ba3b15805a7dcae8", "sha256": "b2cc0771dc28e959e1b0789d09c8c9d0ee3549f32683b49af405ae21c1a65642" }, "downloads": -1, "filename": "pylons-sphinx-themes-1.0.9.tar.gz", "has_sig": false, "md5_digest": "15cb8a7c9a294f15ba3b15805a7dcae8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 142080, "upload_time": "2018-09-23T09:51:19", "url": "https://files.pythonhosted.org/packages/bd/7a/8d63f24000d58c60c251c2235aba888b7ce164eb1b3e5317ebd7fb50765b/pylons-sphinx-themes-1.0.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "d1feebfcf7aa3dff0564300103f79a93", "sha256": "52ce3b799adc10fa330d67bff5402e4067dce11f9e1412796a1ea50994a0b7a1" }, "downloads": -1, "filename": "pylons-sphinx-themes-1.0.10.tar.gz", "has_sig": false, "md5_digest": "d1feebfcf7aa3dff0564300103f79a93", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 142205, "upload_time": "2018-09-25T23:47:11", "url": "https://files.pythonhosted.org/packages/e9/ed/9a3bd8d404be20fb594352bc2682a7bb4aa72650d316535e0a5e82db2f60/pylons-sphinx-themes-1.0.10.tar.gz" } ] }